UNPKG

quantumai-design-system

Version:

퀀텀에이아이의 디자인 시스템

15 lines (14 loc) 466 B
/// <reference types="react" /> import { SetStateType } from '../../../types/hookType'; export type DropDownHandle = { handleShow: (show: boolean) => void; element: HTMLDivElement | null; }; export interface IDropDownCtxProps { show?: boolean; setShow?: SetStateType<boolean>; wrapRef?: HTMLDivElement | null; spacing?: number; isOutSideClose?: boolean; } export declare const DropDownContext: import("react").Context<IDropDownCtxProps>;