import { ViewStyle, TextStyle } from 'react-native'; import { DisplayType } from './types'; interface ViewportProps { allowFontScaling?: boolean; containerStyle?: ViewStyle; discoverable?: boolean; display?: DisplayType; fontSize?: number; index?: number; items?: T[]; marginHorizontalPercentage?: number; marginVerticalPercentage?: number; onChanged?: (index: number) => void; opacityRangeOut?: number[]; scaleRangeOut?: number[]; spaceBetween?: number; textStyle?: TextStyle; } declare const Viewport: ({ allowFontScaling, containerStyle, discoverable, display, fontSize, index, items, marginHorizontalPercentage, marginVerticalPercentage, onChanged, opacityRangeOut, scaleRangeOut, spaceBetween, textStyle, }: ViewportProps) => JSX.Element; export default Viewport;