import React from 'react'; import { View } from 'react-native'; declare type Props = React.ComponentProps & { iconSize: number; iconColor?: string; orientation: 'horizontal' | 'vertical'; }; export default class AdOptionsView extends React.Component { static defaultProps: { iconSize: number; orientation: string; }; shouldAlignHorizontal: () => boolean; render(): JSX.Element; } export declare type NativeAdOptionsView = React.Component; export declare const NativeAdOptionsView: React.ComponentType; export {};