export declare function formatNumber(number: string): string; export declare function formatCurrency(_currency: number): string | number; export declare function formatPhone(_phone: string): string; export declare function modal(): void; export declare function mfDropdown(): void; type AlertMessageParams = { icon?: string | null; showIcon?: boolean; type?: 'success' | 'warning' | 'error'; title?: string; message?: string; messageType?: 'string' | 'html' | 'free_style' | 'alert'; modalSize?: 'xs' | 'sm' | 'md' | 'lg'; modalClass?: string; overClass?: string; headClass?: string; bodyClass?: string; footClass?: string; head?: boolean; foot?: boolean; minimize?: boolean; canClose?: boolean; autoClose?: boolean; autoCloseTime?: number; cfButton?: { text: string; class: string; link?: string; callbackVal?: string; }[]; }; export declare function alertMessage(params: AlertMessageParams): void; export declare function maxEqLenSubstr(inputStr: string, params?: any): number; export {};