declare const helpers: { canActionProceed: (action: any, page: any, pageValidator: any, errors: any) => boolean; canCYASubmit: (pages: any, pagesValidator: any) => boolean; cleanHiddenNestedData: (patch: any, page: any) => any; getFormState: (pageId: any, pages: any, hub: any) => { pageId: any; cya: { title: string; hideChangeActions?: undefined; hideGroupActions?: undefined; } | { title?: undefined; hideChangeActions?: undefined; hideGroupActions?: undefined; } | { title: any; hideChangeActions: any; hideGroupActions: any; } | undefined; page: any; }; getRelevantPages: (formState: any, pages: any, currentTaskPages: any) => any; getNextPageId: (formType: any, pages: any, currentPageId: any, action: any, formData: any) => any; getPage: (pageId: any, pages: any, hub: any) => any; getSubmissionStatus: (formType: any, pages: any, currentPageId: any, action: any, formData: any, currentTask: any, isCompleted: any, sections: any) => any; getUpdatedSectionStates: (sections: any, taskStates: any, nonSequential?: boolean, data?: null) => any; clearOutUncompletedRoutes: (cleanseHiddenData: any, form: any, formData: any) => any; }; export default helpers;