/** * This file was auto-generated by Fern from our API Definition. */ import * as environments from "../../../../environments"; import * as core from "../../../../core"; import * as Airtop from "../../../index"; export declare namespace Profiles { interface Options { environment?: core.Supplier; /** Specify a custom URL to connect the client to. */ baseUrl?: core.Supplier; apiKey: core.Supplier; fetcher?: core.FetchFunction; } interface RequestOptions { /** The maximum time to wait for a response in seconds. */ timeoutInSeconds?: number; /** The number of times to retry the request. Defaults to 2. */ maxRetries?: number; /** A hook to abort the request. */ abortSignal?: AbortSignal; /** Additional headers to include in the request. */ headers?: Record; } } export declare class Profiles { protected readonly _options: Profiles.Options; constructor(_options: Profiles.Options); /** * Delete profiles matching by id * * @param {Airtop.ProfilesDeleteRequest} request * @param {Profiles.RequestOptions} requestOptions - Request-specific configuration. * * @example * await client.profiles.delete() */ delete(request?: Airtop.ProfilesDeleteRequest, requestOptions?: Profiles.RequestOptions): Promise; protected _getAuthorizationHeader(): Promise; }