export interface MenuDropdownOption { value: T; label: string; } interface MenuDropdownProps { options: MenuDropdownOption[]; value: T; onChange: (value: T) => void; } /** * A dropdown menu that matches Geist's MenuButton (secondary) + Menu styling. * Uses CSS classes with proper :hover specificity (no inline background). */ export declare function MenuDropdown({ options, value, onChange, }: MenuDropdownProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=menu-dropdown.d.ts.map