UNPKG

@trellixio/roaster-coffee

Version:
17 lines 743 B
import * as React from 'react'; import { ForwardRefWithStaticComponents } from '@/types'; import { UseDropdownOptions } from '@/utils'; import { DropdownCardTrigger, DropdownCardContent, DropdownCardDropdown, DropdownCardActions } from './components'; export interface DropdownCardProps extends UseDropdownOptions { children: React.ReactNode; className?: string; } declare type DropdownCardComponent = ForwardRefWithStaticComponents<DropdownCardProps, { Trigger: typeof DropdownCardTrigger; Content: typeof DropdownCardContent; Dropdown: typeof DropdownCardDropdown; Actions: typeof DropdownCardActions; }>; export declare const DropdownCard: DropdownCardComponent; export {}; //# sourceMappingURL=DropdownCard.d.ts.map