interface RuleObj { leftText: string; maxLength: number; ruleArr: number[]; } /** * 判断输入是否合法 * @param param0 * @returns */ export declare const checkValid: ({ inputType, text }: { inputType: any; text: any; }) => boolean; /** * 输入格式化规则 * @param param0 */ export declare const chooseRule: ({ inputType, leftText, maxLength }: { inputType: any; leftText: any; maxLength: any; }) => RuleObj; /** * 根据格式化规则进行格式更改 */ export declare const changeRule: ({ inputType, text }: { inputType: any; text: any; }, ruleObj: any) => string; export {};