import { z } from 'zod'; export declare const VARIANT: "groupBox"; /** PADDING is the gap between a group box's edge and its members' bounds. */ export declare const PADDING = 20; /** TOP_PADDING is the larger gap above the members' bounds. */ export declare const TOP_PADDING = 40; export declare const configZ: z.ZodObject<{ variant: z.ZodLiteral<"groupBox">; members: z.ZodArray; locked: z.ZodOptional; }, z.core.$strip>; export type Config = z.infer; //# sourceMappingURL=config.d.ts.map