import { z } from "zod"; export declare const DropdownOption: z.ZodObject<{ label: z.ZodString; value: z.ZodUnknown; }, z.core.$strip>; export type DropdownOption = { label: string; value: T; }; export declare const DropdownState: z.ZodObject<{ disabled: z.ZodOptional; placeholder: z.ZodOptional; options: z.ZodArray>; }, z.core.$strip>; export type DropdownState = { disabled?: boolean; placeholder?: string; options: DropdownOption[]; }; //# sourceMappingURL=common.d.ts.map