declare function phone(value: string): string;
declare function licensePlate(value: string): string;
declare function yearyear(value: string): string;
declare function cep(value: string): string;
declare function UF(value: string): string;
declare const _default: {
    phone: typeof phone;
    licensePlate: typeof licensePlate;
    yearyear: typeof yearyear;
    cep: typeof cep;
    UF: typeof UF;
};
export default _default;
