export declare class AcceptTermsOfServiceRequest {
    /**
    * The unique identifier of the user accepting the Terms of Service.
    */
    'acceptedBy'?: string;
    /**
    * The IP address of the user accepting the Terms of Service.
    */
    'ipAddress'?: string;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
