import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class AllowedDomains extends ClientSDK { /** * List Allowed Domains * * @remarks * Lists allowed domains belonging to the account. * * ## Requires api token with one of the following permissions * ``` * Read all data * ``` */ list(request?: operations.GetAllowedDomainsRequest | undefined, options?: RequestOptions): Promise>; /** * Create Allowed Domain * * @remarks * Creates an allowed domain for the account. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ create(request: operations.PostAllowedDomainsRequest, options?: RequestOptions): Promise; /** * Show Allowed Domain * * @remarks * Returns the details of an allowed domain. * * ## Requires api token with one of the following permissions * ``` * Read all data * ``` */ get(request: operations.GetAllowedDomainsDomainRequest, options?: RequestOptions): Promise; /** * Delete Allowed Domain * * @remarks * Deletes an allowed domain from the account. * * ## Requires api token with one of the following permissions * ``` * Read, update & delete anything * ``` */ delete(request: operations.DeleteAllowedDomainsDomainRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=alloweddomains.d.ts.map