import React from 'react'; import { View, ViewProps } from 'react-native'; export declare type PopoverProps = { animated?: boolean; animationType?: 'spring' | 'timing'; backgroundColor?: string; caret?: boolean; caretPosition?: 'left' | 'center' | 'right'; children: string | React.ReactElement; forceInitialAnimation?: boolean; numberOfLines?: number; visible?: boolean; position?: 'top' | 'right' | 'bottom' | 'left'; contentStyle?: ViewProps['style']; } & ViewProps; declare const Popover: React.ForwardRefExoticComponent<{ animated?: boolean | undefined; animationType?: "spring" | "timing" | undefined; backgroundColor?: string | undefined; caret?: boolean | undefined; caretPosition?: "left" | "center" | "right" | undefined; children: string | React.ReactElement; forceInitialAnimation?: boolean | undefined; numberOfLines?: number | undefined; visible?: boolean | undefined; position?: "left" | "right" | "top" | "bottom" | undefined; contentStyle?: ViewProps['style']; } & ViewProps & React.RefAttributes>; export default Popover;