import { APIResource } from "../../core/resource.mjs"; import { APIPromise } from "../../core/api-promise.mjs"; import { RequestOptions } from "../../internal/request-options.mjs"; export declare class BaseURLs extends APIResource { static readonly _key: readonly ['aiGateway', 'urls']; /** * Retrieves the endpoint URL for an AI Gateway. * * @example * ```ts * const url = await client.aiGateway.urls.get('workers-ai', { * account_id: '0d37909e38d3e99c29fa2cd343ac421a', * gateway_id: 'my-gateway', * }); * ``` */ get(provider: string, params: URLGetParams, options?: RequestOptions): APIPromise; } export declare class URLs extends BaseURLs { } export type URLGetResponse = string; export interface URLGetParams { account_id: string; /** * gateway id */ gateway_id: string; } export declare namespace URLs { export { type URLGetResponse as URLGetResponse, type URLGetParams as URLGetParams }; } //# sourceMappingURL=urls.d.mts.map