import type { SelectOption } from "../../types"; interface Props { onChange: (value: SelectOption | null) => void; value?: SelectOption; options: readonly SelectOption[]; } /** * TableSelect: Selector para celdas de tabla editable. * Reemplaza chakra-react-select con un selector nativo. */ export declare const TableSelect: ({ onChange, value, options }: Props) => import("react/jsx-runtime").JSX.Element; export {};