import React, { ComponentProps } from "react"; import { Tooltip as TRTooltip } from "@planningcenter/tapestry-react"; type UpstreamTooltipProps = ComponentProps; type TooltipPlacement = Exclude; type TooltipProps = { children: React.ReactElement | React.ReactElement[]; maxWidth?: string; placement?: TooltipPlacement; textAlign?: "left" | "center" | "right"; title: string; zIndex?: number; }; export declare const Tooltip: ({ children, maxWidth, placement, textAlign, title, zIndex, }: TooltipProps) => React.JSX.Element; export {}; //# sourceMappingURL=Tooltip.d.ts.map