UNPKG

@chief-editor/ui

Version:

UI Component for chief editor

7 lines (6 loc) 361 B
/// <reference types="react" /> import { UnionOmit } from '@co-hooks/util'; import { ILinkProps } from '../link'; import { IDropdownOptions } from './useDropdown'; export declare type IDropdownLinkProps = UnionOmit<IDropdownOptions, Omit<ILinkProps, 'href' | 'onClick' | 'active'>>; export declare function DropdownLink(props: IDropdownLinkProps): JSX.Element;