import { z } from "zod"; export declare const instanceGeneralSettingsSchema: z.ZodObject<{ censorUsernameInLogs: z.ZodDefault; }, "strict", z.ZodTypeAny, { censorUsernameInLogs: boolean; }, { censorUsernameInLogs?: boolean | undefined; }>; export declare const patchInstanceGeneralSettingsSchema: z.ZodObject<{ censorUsernameInLogs: z.ZodOptional>; }, "strict", z.ZodTypeAny, { censorUsernameInLogs?: boolean | undefined; }, { censorUsernameInLogs?: boolean | undefined; }>; export declare const instanceExperimentalSettingsSchema: z.ZodObject<{ enableIsolatedWorkspaces: z.ZodDefault; autoRestartDevServerWhenIdle: z.ZodDefault; }, "strict", z.ZodTypeAny, { enableIsolatedWorkspaces: boolean; autoRestartDevServerWhenIdle: boolean; }, { enableIsolatedWorkspaces?: boolean | undefined; autoRestartDevServerWhenIdle?: boolean | undefined; }>; export declare const patchInstanceExperimentalSettingsSchema: z.ZodObject<{ enableIsolatedWorkspaces: z.ZodOptional>; autoRestartDevServerWhenIdle: z.ZodOptional>; }, "strict", z.ZodTypeAny, { enableIsolatedWorkspaces?: boolean | undefined; autoRestartDevServerWhenIdle?: boolean | undefined; }, { enableIsolatedWorkspaces?: boolean | undefined; autoRestartDevServerWhenIdle?: boolean | undefined; }>; export type InstanceGeneralSettings = z.infer; export type PatchInstanceGeneralSettings = z.infer; export type InstanceExperimentalSettings = z.infer; export type PatchInstanceExperimentalSettings = z.infer; //# sourceMappingURL=instance.d.ts.map