import { Records } from 'jmini';
declare namespace CollectForm {
type FN = {
(formName: string): Promise<Output>;
};
type Output = {
isValid: boolean;
data: Records;
};
}
declare const CollectForm: CollectForm.FN;
export { CollectForm, CollectForm as default };