///
import { UsePersonalAcountProps } from "./PersonalAcount.hooks";
export declare type PersonalAcountProps = UsePersonalAcountProps & {
noAccess: {
personal: string[];
email: string[];
password: string[];
};
};
export declare type BaseAppState = {
auth: {
authorized: string;
authenticated: boolean;
refreshToken: string;
};
};
export declare function PersonalAcount(props: PersonalAcountProps): JSX.Element;