export declare class TermsOfServiceAcceptanceInfo {
    /**
    * The unique identifier of the user that accepted the Terms of Service.
    */
    'acceptedBy'?: string;
    /**
    * The unique identifier of the legal entity for which the Terms of Service are accepted.
    */
    'acceptedFor'?: string;
    /**
    * The date when the Terms of Service were accepted.
    */
    'createdAt'?: Date;
    /**
    * An Adyen-generated reference for the accepted Terms of Service.
    */
    'id'?: string;
    /**
    * The type of Terms of Service.
    */
    'type'?: TermsOfServiceAcceptanceInfo.TypeEnum;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace TermsOfServiceAcceptanceInfo {
    enum TypeEnum {
        AdyenAccount = "adyenAccount",
        AdyenCapital = "adyenCapital",
        AdyenCard = "adyenCard",
        AdyenForPlatformsAdvanced = "adyenForPlatformsAdvanced",
        AdyenForPlatformsManage = "adyenForPlatformsManage",
        AdyenFranchisee = "adyenFranchisee",
        AdyenIssuing = "adyenIssuing"
    }
}
