/// import IFrontController from "../../../../types/front-controller"; import { NameOption } from "../../FullNamesList"; import { TermsAndConditions } from "../../../hooks/useRecorderState"; interface Props { name: Omit; controller: IFrontController; termsAndConditions?: TermsAndConditions; } declare const PersonalBlock: (props: Props) => JSX.Element; export default PersonalBlock;