import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export interface RowWithOverflowProps { items: T[]; renderItem: (item: T) => React.ReactNode; renderOverflowIndicator: (remainingCount: number) => React.ReactNode; rowWidth?: number; rowContainerStyles?: StyleProp; } declare const RowWithOverflow: ({ items, renderItem, renderOverflowIndicator, rowWidth, rowContainerStyles, }: RowWithOverflowProps) => import("react/jsx-runtime").JSX.Element; export default RowWithOverflow; //# sourceMappingURL=index.d.ts.map