import { SupabaseClient } from '@supabase/supabase-js'; export type GetApiWorkspacesWorkspaceNameArgs = { workspaceName: string; supabase: SupabaseClient; }; export declare const getApiWorkspacesWorkspaceName: ({ workspaceName, supabase, }: GetApiWorkspacesWorkspaceNameArgs) => Promise<{ id: string; name: string; label: string; baseFilesSha256: string | null; schema: { id: string; name: string; slug: string; openapiVersion: "3.0" | "3.1" | "2.0"; typespecSchemaId: string | null; public: boolean; format: "json" | "yaml"; sourceUrl: string | null; createdAt: string; iconKey?: string | null | undefined; }; server: { id: string; serverName: string; latestDeploymentId: string | null; latestDenoDeploymentId: string | null; denoProjectName: string; latestStatus: "success" | "pending" | "failed" | "deleted" | null; createdAt: string; updatedAt: string; }; clientSettings: { basePath?: string | undefined; packages?: { rootPath: string; moduleName?: string | undefined; }[] | undefined; enrichments?: Record>> | undefined; skip?: (string | Record | Record>)[] | undefined; }; createdAt: string; schemaContent?: string | undefined; }>; //# sourceMappingURL=getApiWorkspacesWorkspaceName.generated.d.ts.map