@innovaccer/design-system
Version:
React components library project for Innovaccer Design System
9 lines (8 loc) • 325 B
TypeScript
import * as React from 'react';
import { DropdownProps } from "../../../index.type";
interface DraggableDropdownProps {
options: DropdownProps['options'];
onChange: (options: DropdownProps['options']) => void;
}
export declare const DraggableDropdown: (props: DraggableDropdownProps) => React.JSX.Element;
export {};