import { ControlProps } from './';
export interface UseControl extends ControlProps {
}
export declare function useControl(props?: UseControl): {
    control: BMap.Control | undefined;
    ControlPortal: (props: {
        children?: React.ReactNode;
    }) => import("react").ReactPortal | null;
    setControl: import("react").Dispatch<import("react").SetStateAction<BMap.Control | undefined>>;
};
