import IConsent from '../interfaces/IConsent';
import BankConsent from './BankConsent';
export default class Consent implements IConsent {
    private _consentId;
    private _expirationDate;
    private _bank;
    private _status;
    constructor({ consentId, expirationDate, bank, status }: IConsent);
    get consentId(): string;
    get expirationDate(): number;
    get bank(): BankConsent;
    get status(): string;
}
