import { AdminPageProps } from '../'; import { CheckboxProps } from 'antd/lib/checkbox'; import { Entity, UserEntity } from 'matrix-ui-service'; export declare function UserProfile(props: AdminPageProps): JSX.Element; interface ProfileFormProps { inputItem: UserEntity; showPassword: boolean; onCheckboxChange: CheckboxProps['onChange']; onSave: (item: Entity) => void; } export declare function ProfileFrom(props: ProfileFormProps): JSX.Element; export {};