/** Contact change request */
export interface ContactChangeRequest {
    /** List of accounts you want to be considered as 'admin' of the service */
    admin: string[];
    /** List of accounts you want to be considered as 'billing' contact */
    billing: string[];
    /** List of accounts you want to be considered as 'technical' contact */
    technical: string[];
}
//# sourceMappingURL=ContactChangeRequest.d.ts.map