import * as React from 'react'; declare const CallBackControl: ({ position, title, onClick, breakpoint, disabled, }: CallBackControlType) => null; declare const _default: React.MemoExoticComponent<({ position, title, onClick, breakpoint, disabled, }: CallBackControlType) => null>; type CallBackControlType = { onClick?: (event: MouseEvent) => void; title?: string; position?: "top" | "bottom"; breakpoint?: "xl" | "lg" | "md" | "sm" | "xs" | false; disabled?: boolean; }; export { CallBackControl, _default as default };