declare type DeepPartial = { [P in keyof T]?: DeepPartial; }; declare type ActualCpfFormattingOptions = { delimiters: { dot: string; dash: string; }; hiddenRange: { start: number; end: number; }; onFail: (value: string, error: Error) => any; hiddenKey: string; hidden: boolean; escape: boolean; }; declare type CpfFormattingOptions = DeepPartial; /** * Validate a given CPF char sequence. */ declare function cpfFmt(cpfString: string, options?: CpfFormattingOptions): string; export { cpfFmt as default };