quantumai-design-system
Version:
퀀텀에이아이의 디자인 시스템
11 lines (10 loc) • 679 B
TypeScript
import React, { ReactNode } from 'react';
import { DropDownHandle, IDropDownCtxProps } from './DropDownContext';
interface IDropDownProps extends React.HTMLAttributes<HTMLDivElement>, Pick<IDropDownCtxProps, 'spacing' | 'isOutSideClose'> {
children: ReactNode;
}
declare const _default: React.ForwardRefExoticComponent<IDropDownProps & React.RefAttributes<DropDownHandle>> & {
Trigger: React.ForwardRefExoticComponent<import("./DropDownTrigger").IDropDownTriggerProps & React.RefAttributes<HTMLDivElement>>;
Display: React.ForwardRefExoticComponent<import("./DropDownDisplay").IDropDownDisplayProps & React.RefAttributes<HTMLDivElement>>;
};
export default _default;