export declare const formatFull: (date: Date) => string; export declare const formatFullReplace: (date: Date) => string; export declare const formatYMD: (date: Date) => string; export declare const formatWeek: (date: Date) => string; export declare const formatRmb: (value: number, options: { type: "zh-CN"; currency: "CNY"; }) => string; export declare const formatNum: (value: number) => string; export declare const percentCN: (value: number, digit?: number) => string; export declare const compactEN: (value: number) => string; export declare const compactCN: (value: number) => string; export declare const signed: (value: number, digit?: number) => string; export declare const maskPhone: (phone: string) => string; export declare const spacePhone: (phone: string) => string; export declare const capitalize: (str: string) => string; export declare const kebabToCamel: (str: string) => string; export declare const camelToKebab: (str: string) => string; export declare const truncate: (str: string, maxLength: number, suffix?: string) => string; export declare const truncateByWords: (str: string, maxWords: number, suffix?: string) => string; export declare const trimAll: (str: string) => string; export declare const toCamel: (str: string) => string; export declare const firstUpper: (str: string) => string; export declare const firstLower: (str: string) => string; export declare const reverse: (str: string) => string;