import { Q as ValidationResult, j as Cpf, F as FormatResult } from './validation-result-D4Wrxl7j.js'; export { D as DocumentFormat, V as ValidationErrorCode } from './validation-result-D4Wrxl7j.js'; declare const CPF_GOLDEN_PRIMARY = "12345678909"; declare const CPF_GOLDEN_SECONDARY = "11144477735"; declare const CPF_GOLDEN_PRIMARY_MASKED = "123.456.789-09"; declare const CPF_OFFICIAL_SOURCE_URL = "https://www.gov.br/receitafederal/pt-br/assuntos/cpf"; declare function isValidCpf(input: string): boolean; declare function validateCpf(input: string): ValidationResult; /** * Strip CPF mask — digits only (BR-CPF-002). * @see https://www.gov.br/receitafederal/pt-br/assuntos/cpf */ declare function stripCpf(input: string): string; declare function formatCpf(input: string): FormatResult; export { CPF_GOLDEN_PRIMARY, CPF_GOLDEN_PRIMARY_MASKED, CPF_GOLDEN_SECONDARY, CPF_OFFICIAL_SOURCE_URL, Cpf, FormatResult, ValidationResult, formatCpf, isValidCpf, stripCpf, validateCpf };