import { z } from "zod"; export declare const TerminalProfileSchema: z.ZodObject<{ id: z.ZodString; name: z.ZodString; command: z.ZodString; args: z.ZodOptional>; icon: z.ZodOptional; }, z.core.$loose>; export type TerminalProfile = z.infer; //# sourceMappingURL=terminal-profile.d.ts.map