import type { PartialDeep } from 'type-fest'; import type { OpenApiDocument } from '../../schemas/v3.1/strict/openapi-document.js'; import { type WorkspaceMeta } from '../../schemas/workspace.js'; import { type Info } from '../../schemas/workspace-specification/info.js'; export declare const WorkspaceSpecificationSchema: import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{ workspace: import("@scalar/typebox").TLiteral<"draft">; info: import("@scalar/typebox").TObject<{ title: import("@scalar/typebox").TString; description: import("@scalar/typebox").TOptional; }>; documents: import("@scalar/typebox").TOptional>>; overrides: import("@scalar/typebox").TOptional>; }>, import("@scalar/typebox").TIntersect<[import("@scalar/typebox").TObject<{ "x-scalar-color-mode": import("@scalar/typebox").TOptional, import("@scalar/typebox").TLiteral<"light">, import("@scalar/typebox").TLiteral<"dark">]>>; "x-scalar-default-client": import("@scalar/typebox").TOptional[]>>; "x-scalar-active-document": import("@scalar/typebox").TOptional; "x-scalar-theme": import("@scalar/typebox").TOptional; "x-scalar-sidebar-width": import("@scalar/typebox").TOptional; }>, import("@scalar/typebox").TObject<{ 'x-scalar-active-proxy': import("@scalar/typebox").TOptional>; }>]>]>; export type WorkspaceSpecification = { workspace: 'draft'; info: Info; documents?: Record; overrides?: Record>; } & WorkspaceMeta; //# sourceMappingURL=index.d.ts.map