/// export interface SignupFormInterface { initialData: { name: string; email: string; password: string; c_password: string; }; schema: any; handleAction: (type: string, data?: any) => void; } declare const SignupForm: ({ initialData, schema, handleAction, }: SignupFormInterface) => JSX.Element; export default SignupForm;