import React from 'react'; export interface SelectValueProps { /** * Placeholder text when no value is selected */ placeholder?: string; /** * Custom className */ className?: string; } /** * SelectValue Component * * Shadcn-compatible select value display component. * Shows the selected value or placeholder. * * @public */ export declare const SelectValue: React.FC; //# sourceMappingURL=SelectValue.d.ts.map