/// import { WorkerFlowFormType } from '../interface'; interface IFormAuthProps { form: WorkerFlowFormType[]; onChange: (options: any) => void; } declare function FormAuth({ form, onChange }: IFormAuthProps): JSX.Element; export default FormAuth;