/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import React from 'react'; import { StyleProp, ViewProps, ViewStyle } from 'react-native'; import { StyledComponentProps } from '../../theme'; import { PopoverPlacement } from './type'; declare type AnimatedViewStyle = ViewStyle | any; export interface PopoverViewProps extends ViewProps, StyledComponentProps { contentContainerStyle?: StyleProp; placement?: PopoverPlacement | string; indicator?: (props: ViewProps) => React.ReactElement; } export declare type PopoverViewElement = React.ReactElement; export declare class PopoverView extends React.Component { private get placement(); private getComponentStyle; private getDirectionStyle; render(): React.ReactElement; } export {};