agentic-ui-libs
Version:
A modular, config-driven analytics library for React and Angular applications
13 lines • 359 B
TypeScript
import React from 'react';
import { DropdownOption } from '@/types';
interface SelectProps {
options: DropdownOption[];
value?: string;
placeholder?: string;
onChange?: (value: string) => void;
className?: string;
disabled?: boolean;
}
export declare const Select: React.FC<SelectProps>;
export {};
//# sourceMappingURL=Select.d.ts.map