import { PluginObject } from 'vue'; export interface IOptions { keys: string[]; } export declare const defaultOptions: IOptions; export declare function filterMessage(v: any): string; export declare function filterDate(v?: string | Date | number, fmt?: string): string; export declare function filterCutOut(v: string, max?: number): string; export declare function filterIDCard(v: string): string; export declare function filterBankCard(v: string): string; export declare function filterPhone(v: string): string; export declare function filterName(v: string): string; export declare function filterLetter(v: string): string; export declare function filterNumberLetter(v: string): string; export declare function filterEmoji(v: string): string; export declare function filterCRLF(v: string): string; export declare function filterAmount(s: any, divisor?: number): string; export declare function filterAmountCent(v: any): string; export declare const filters: { filterMessage: typeof filterMessage; filterCutOut: typeof filterCutOut; filterIDCard: typeof filterIDCard; filterBankCard: typeof filterBankCard; filterPhone: typeof filterPhone; filterName: typeof filterName; filterLetter: typeof filterLetter; filterEmoji: typeof filterEmoji; filterDate: typeof filterDate; filterCRLF: typeof filterCRLF; filterAmount: typeof filterAmount; filterAmountCent: typeof filterAmountCent; }; declare const Filters: PluginObject; export default Filters;