export default Tip;
export type Props = {
    /**
     * Children to render in the tip.
     */
    children: import('react').ReactNode;
};
/**
 * @typedef Props
 * @property {import('react').ReactNode} children Children to render in the tip.
 */
/**
 * @param {Props} props
 * @return {JSX.Element} Element
 */
declare function Tip(props: Props): JSX.Element;
//# sourceMappingURL=index.d.ts.map