import React from "react"; import { ContainerComponentProps } from '../types/common'; export interface EmptyStatesProps extends ContainerComponentProps { message: string; description?: string; label?: string; onPress?: () => void; action?: "none" | "primary" | "secondary"; children?: React.ReactNode; } declare const EmptyState: React.FC; export default EmptyState;