interface ToolTipContextValues { dismissToolTip: () => void; setToolTip: (toolTip: string) => void; } interface ToolTipProps { children?: React.ReactNode; enabled?: Boolean; /** The direction the tooltip should flow. If not provided, the tooltip will flow to the left if it is near the right edge of the screen, and vice-versa */ flowDirection?: "LEFT" | "RIGHT"; initialToolTipText?: string; maxWidth?: number; onPress?: () => void; position?: "TOP" | "BOTTOM"; tapToDismiss?: boolean; testID?: string; /** horizontal margin of tooltip */ xOffset?: number; /** vertical margin of tooltip */ yOffset?: number; } export declare const ToolTipContext: import("react").Context; /** * A ToolTip Component * @example * * * * * @example * * * {({ setToolTip, dismissToolTip }) => ( * * )} * * * */ export declare const ToolTip: React.FC; export declare const useToolTipContext: () => ToolTipContextValues; export {};