import { CSSProperties } from 'react'; export declare const TOP = "top"; export declare const BOTTOM = "bottom"; export declare const LEFT = "left"; export declare const TOPSTART = "top-start"; export declare const TOPEND = "top-end"; export declare const RIGHT = "right"; export declare const RIGHTSTART = "right-start"; export declare const RIGHTEND = "right-end"; export declare const BOTTOMEND = "bottom-end"; export declare const BOTTOMSTART = "bottom-start"; export declare const LEFTSTART = "left-start"; export declare const LEFTEND = "left-end"; export type Position = typeof TOP | typeof BOTTOM | typeof LEFT | typeof RIGHT | typeof TOPSTART | typeof TOPEND | typeof RIGHTSTART | typeof RIGHTEND | typeof BOTTOMEND | typeof BOTTOMSTART | typeof LEFTEND | typeof LEFTSTART; export type Props = { placement?: Position; overlayStyle?: CSSProperties; overlay?: React.ReactNode; children?: React.ReactNode; }; declare function Tooltip({ placement, overlayStyle, children, overlay, ...rest }: Props): import("react/jsx-runtime").JSX.Element; export { Tooltip }; //# sourceMappingURL=Tooltip.component.d.ts.map