import { FC } from 'react'; import { FormValues } from '../../types'; declare type Props = { buttonLabel: string; apiUrl: string; onSignup: (values: FormValues) => Promise<{ organizationId: string; } | { errors: Record; }>; onSuccess: (organizationId: string, companyDisclaimer: boolean) => void; onError: (error: { status: number; message: string; }) => void; }; export declare const RegisterationForm: FC; export default RegisterationForm;