import React from "react"; export declare type TipProps = { text?: string | React.ReactNode; children: React.ReactNode | any; placement?: "auto-start" | "auto" | "auto-end" | "top-start" | "top" | "top-end" | "right-start" | "right" | "right-end" | "bottom-end" | "bottom" | "bottom-start" | "left-end" | "left" | "left-start"; }; declare function Tip({ text, children, placement }: TipProps): JSX.Element; export default Tip; //# sourceMappingURL=index.d.ts.map