import React from "react"; export type TooltipProps = { children: React.ReactNode; className?: string; title: string; position?: "top" | "bottom" | "left" | "right"; align?: "center" | "start" | "end"; delayDuration?: number; open?: boolean; arrow?: boolean; onClickOutside?: () => void; asChild?: boolean; }; declare const _default: >(props: { sx?: any; } & { component?: C; } & Omit>>, "component" | "sx"> & { ref?: import("../../system/types").PolymorphicRef; }) => React.ReactElement>; export default _default;