type ReceptorConsecutiveProps = {
    branch: string;
    terminal: string;
    documentType: '05' | '06' | '07';
    consecutive: string;
};
export declare class ReceptorConsecutive {
    private props;
    constructor(props: ReceptorConsecutiveProps);
    get value(): string;
    static create(props: ReceptorConsecutiveProps): ReceptorConsecutive;
}
export {};
