import React, { FC } from 'react'; export declare const SELF_OVERVIEW_CLASSNAMES: string[]; export declare const SELF_OVERVIEW_STYLE: React.CSSProperties; export declare type SelfOverviewMobileProps = { children?: React.ReactNode; style?: React.CSSProperties; overrideStyle?: boolean; classNames?: string[]; overrideClasses?: boolean; onWhich?: (which: "overview" | "tos") => Promise; onFeedbackSubmit?: (feedback: string) => Promise; onChangePasswordSubmit?: (args: { password: string; confirmedPassword: string; }) => Promise; username?: string; onLogOut?: () => Promise; }; export declare const SelfOverviewMobile: FC;