import { ViewStyle } from "react-native"; interface Props { containerStyle?: ViewStyle; tapToDismiss?: boolean; height: number; width: number; onToolTipPress?: () => void; onClose: () => void; position?: "TOP" | "BOTTOM"; testID?: string; text?: string; } export declare const ToolTipFlyout: React.FC; /** Please be careful with applying any styling here. This forms the basis with which we measure * in advance by how large we can inflate a tooltip. */ export declare const ToolTipTextContainer: React.FC<{ text?: string; }>; export {};