import { FormikValues } from 'formik'; import { IShareButton } from '../confirmationContainer'; export declare const getValidateFunctions: ({ element, values, }: { element: IFormField; values: FormikValues; }) => (...value: any) => any; export declare const getFormInitialValues: (fieldsSections: IFormFieldsSection[]) => { [key: string]: string | number | boolean; }; export declare const updateFormFieldsAttributes: (formFields: IFormFieldsSection[], attributes?: IFieldAttribute | undefined) => IFormFieldsSection[]; export declare const shareOptionsAdapter: (data: Array, shareUrl: string) => IShareButton[]; export declare const getShuffleMethodByName: (tokenShuffleMethod: string) => (value: string) => string;