import { CSSProperties } from "react"; import { TagColor } from "@easyv/dtable-types/output/Color"; import { SelectOption } from "@easyv/dtable-types/output/Column"; interface Props { disableColor?: boolean; configurable?: boolean; onSelect?: (v: string) => void; onUpdateLabel(id: string, v: { name?: string; color?: TagColor; }): void; onCreateLabel?: (v: SelectOption) => void; options: (SelectOption & { hidden?: boolean; })[]; style?: CSSProperties; className?: string; newLabelColor?: TagColor; } declare function OptionsDropdown({ style, configurable, className, newLabelColor, onSelect, onCreateLabel, disableColor, options, onUpdateLabel, }: Props): JSX.Element; export default OptionsDropdown;