/// type ThemeOption = { value: string; label: string; }; type ThemeSelectProps = { value: string; options: readonly ThemeOption[]; onValueChange: (value: string) => void; currentLabel: string; className?: string; style?: React.CSSProperties; }; export declare const ThemeSelect: ({ value, options, onValueChange, currentLabel, className, style, }: ThemeSelectProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=theme-select.d.ts.map