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;
