/// <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>;
