import { Position } from "@blueprintjs/core/lib/esm/common/position"; import { CommonComponentProps } from "Types/common"; export type TableDropdownOption = { id: string; name: string; desc: string; }; type DropdownProps = CommonComponentProps & { options: TableDropdownOption[]; onSelect: (selectedValue: TableDropdownOption) => void; selectedIndex: number; position?: Position; selectedTextWidth?: string; }; declare function TableDropdown(props: DropdownProps): JSX.Element; export default TableDropdown;