import { type Client } from '../../../../lib/seam/connect/client.js'; import { type SeamHttpRequestOptions, type SeamHttpWithoutWorkspaceOptions, type SeamHttpWithoutWorkspaceOptionsWithClient, type SeamHttpWithoutWorkspaceOptionsWithConsoleSessionToken, type SeamHttpWithoutWorkspaceOptionsWithPersonalAccessToken } from '../../../../lib/seam/connect/options.js'; import { type SeamCustomerV1ConnectorsAuthorizeOptions, type SeamCustomerV1ConnectorsAuthorizeParameters, type SeamCustomerV1ConnectorsAuthorizeRequest } from './seam/customer/v1/connectors/index.js'; import { type WorkspacesCreateOptions, type WorkspacesCreateParameters, type WorkspacesCreateRequest, type WorkspacesListOptions, type WorkspacesListParameters, type WorkspacesListRequest } from './workspaces/index.js'; export declare class SeamHttpEndpointsWithoutWorkspace { client: Client; readonly defaults: Required; readonly ltsVersion = "1.0.0"; static ltsVersion: string; constructor(options?: SeamHttpWithoutWorkspaceOptions); static fromClient(client: SeamHttpWithoutWorkspaceOptionsWithClient['client'], options?: Omit): SeamHttpEndpointsWithoutWorkspace; static fromConsoleSessionToken(consoleSessionToken: SeamHttpWithoutWorkspaceOptionsWithConsoleSessionToken['consoleSessionToken'], options?: Omit): SeamHttpEndpointsWithoutWorkspace; static fromPersonalAccessToken(personalAccessToken: SeamHttpWithoutWorkspaceOptionsWithPersonalAccessToken['personalAccessToken'], options?: Omit): SeamHttpEndpointsWithoutWorkspace; get '/seam/customer/v1/connectors/authorize'(): (parameters?: SeamCustomerV1ConnectorsAuthorizeParameters, options?: SeamCustomerV1ConnectorsAuthorizeOptions) => SeamCustomerV1ConnectorsAuthorizeRequest; get '/workspaces/create'(): (parameters?: WorkspacesCreateParameters, options?: WorkspacesCreateOptions) => WorkspacesCreateRequest; get '/workspaces/list'(): (parameters?: WorkspacesListParameters, options?: WorkspacesListOptions) => WorkspacesListRequest; } export type SeamHttpEndpointWithoutWorkspaceQueryPaths = '/seam/customer/v1/connectors/authorize' | '/workspaces/list'; export type SeamHttpEndpointWithoutWorkspaceMutationPaths = '/workspaces/create';