import { ValidationError } from "./useLeadSubmit"; export interface LeadViewProps { states: { error: boolean | string; currentPage: any; showModal: boolean; loading: boolean; }; data: { formKey: string; pageOnePath: string; pageTwoPath?: string; homePath: string; }; callbacks: { hasErrors: (string: any) => boolean; getErrorMessages: (string: any) => ValidationError[]; resetForm: () => void; }; refs: { formRef: any; }; } export declare function LeadSubmitPart1FormView(props: LeadViewProps): any; export declare function LeadSubmitPart2FormView(props: LeadViewProps): any;