export declare const getPattern: (mask: string | undefined, pattern: string | undefined) => string | undefined; export declare const getPlaceholder: (mask: string | undefined, placeholder: string | undefined) => string | undefined; export declare const getType: (mask: string | undefined, type: string | undefined) => string | undefined; export declare const getInputMode: (mask: string | undefined, inputMode: 'tel' | 'text' | 'numeric' | 'email' | 'search' | 'url' | 'none' | 'decimal' | undefined) => 'tel' | 'text' | 'numeric' | 'email' | 'search' | 'url' | 'none' | 'decimal' | undefined;