export declare class CUIT { private readonly value; private constructor(); static create(value: number | string): CUIT; private validate; private isValidChecksum; getValue(): number; toString(): string; toFormattedString(): string; equals(other: CUIT): boolean; clone(): CUIT; }