type ClaveProps = {
    countryCode: string;
    docKeyType: string;
    identifierType: string;
    emitterIdentifier: string;
    ceSituation: string;
    consecutiveIdentifier: string;
    securityCode: string;
    branch: string;
    terminal: string;
};
export declare class Clave {
    private props;
    get value(): string;
    constructor(props: ClaveProps);
    static create(props: ClaveProps): Clave;
}
export {};
