import type { VirtualizedListProps as RNVirtualizedListProps, StyleProp, ViewStyle } from 'react-native'; import type { SxProps } from '../../types/shared'; export interface VirtualizedListProps extends Omit, 'style' | 'contentContainerStyle'> { /** MUI-native sx styling for the outer list container */ sx?: SxProps; /** Override the outer list style */ style?: StyleProp; /** MUI-native sx styling for the inner content container */ contentSx?: SxProps; /** Override the content container style */ contentContainerStyle?: StyleProp; } /** * Non-generic alias used by ComponentPropsMap. * Components using VirtualizedList should use VirtualizedListProps directly. */ export type VirtualizedListBaseProps = VirtualizedListProps; //# sourceMappingURL=types.d.ts.map