import React from "react"; import { NameOption } from "../../FullNamesList"; import { TermsAndConditions } from "../../../hooks/useRecorderState"; import IFrontController from "../../../../types/front-controller"; import { UserPermissions } from "../../../../types/permissions"; interface Props { names: NameOption[]; termsAndConditions?: TermsAndConditions; controller: IFrontController; permissions?: UserPermissions; onNamesLoaded: () => void; } declare const _default: React.MemoExoticComponent<(props: Props) => JSX.Element>; export default _default;