import { formElement } from "../BAComponentSwitcher"; export declare const formattedNumber: (numString: any) => string; export declare const formattedDate: (dateString: any, format?: string) => string; export declare const goBack: () => void; export declare const checkRequiredElement: (elements: formElement[], model: any) => boolean; export declare const customEncrypt: (input: any, encryptionKey: string) => string; export declare const customDecrypt: (input: any, encryptionKey: string) => any; export declare const removeEmptyRows: (list: any[], key: string) => any[]; export declare const printContentSafe: (body: any, config?: any) => void; export declare const CreateConfig: (key: string, searchable: boolean, show: boolean, title: string, type: "boolean" | "date" | "number" | "percentage" | "text" | "time" | "datetime" | "filterList" | "phone" | "enum" | "link", searchField?: string | null, width?: any, controller?: string, displayField?: any, filterEnums?: { value: any; label: string; key: string; }[], hideFilter?: boolean) => { key: string; searchField: string; searchable: boolean; show: boolean; label: string; type: "number" | "boolean" | "link" | "text" | "time" | "date" | "datetime" | "percentage" | "filterList" | "phone" | "enum"; width: any; controller: string | undefined; displayField: any; filterEnums: { value: any; label: string; key: string; }[] | undefined; hideFilter: boolean | undefined; };