export type ReferenceInformationProps = {
    docType: string;
    refNumber: string;
    issueDate: Date;
    code: string;
    reason: string;
};
export declare class ReferenceInformation {
    private props;
    constructor(props: ReferenceInformationProps);
    get docType(): string;
    get refNumber(): string;
    get issueDate(): Date;
    get code(): string;
    get reason(): string;
    static create(props: ReferenceInformationProps): ReferenceInformation;
}
