import { ReactNode } from 'react'; import { ViewStyle, TextStyle, ImageStyle } from 'react-native'; export interface ImagePreviewProps { visible: boolean; images: string | string[]; initialIndex?: number; onClose: () => void; title?: string; closeIcon?: ReactNode; prevIcon?: ReactNode; nextIcon?: ReactNode; backgroundColor?: string; backdropColor?: string; textColor?: string; headerBackgroundColor?: string; buttonBackgroundColor?: string; loadingColor?: string; style?: ViewStyle; headerStyle?: ViewStyle; titleStyle?: TextStyle; footerStyle?: ViewStyle; imageStyle?: ImageStyle; closeButtonStyle?: ViewStyle; prevButtonStyle?: ViewStyle; nextButtonStyle?: ViewStyle; counterStyle?: TextStyle; navButtonStyle?: ViewStyle; } //# sourceMappingURL=ImagePreview.types.d.ts.map