import { AppState } from '@/ui_models/app_state'; import { FunctionComponent } from 'preact'; import { PreferencesPane } from '../components'; import { EndToEndEncryption } from './EndToEndEncryption'; import { TwoFactorAuthWrapper } from './two-factor-auth'; import { MfaProps } from './two-factor-auth/MfaProps'; interface SecurityProps extends MfaProps { appState: AppState; } export const Security: FunctionComponent = (props) => ( );