import { ReactNode } from 'react'; import { ViewStyle, TextStyle } from 'react-native'; export interface EmptyStateProps { title: string; description: string; icon?: ReactNode; action?: ReactNode; backgroundColor?: string; titleColor?: string; descriptionColor?: string; style?: ViewStyle; containerStyle?: ViewStyle; titleStyle?: TextStyle; descriptionStyle?: TextStyle; actionContainerStyle?: ViewStyle; actionStyle?: ViewStyle; iconContainerStyle?: ViewStyle; iconStyle?: ViewStyle; } //# sourceMappingURL=EmptyState.types.d.ts.map