import React from 'react'; import { ViewStyle } from 'react-native'; export interface EmptyAction { text: string; onPress: () => void; type?: 'primary' | 'secondary'; } export interface EmptyProps { icon?: React.ReactNode; title?: string; description?: string; actionText?: string; onAction?: () => void; actions?: EmptyAction[]; style?: ViewStyle; align?: 'center' | 'start'; spacing?: number; fullHeight?: boolean; } export declare const Empty: React.FC; export default Empty; //# sourceMappingURL=Empty.d.ts.map