import * as React from "react"; import { ViewProps } from "../View"; export interface EmptyStateProps extends ViewProps { title?: string; description?: string; spotIcon?: string; actionText?: string; action?: (evt: React.SyntheticEvent) => void; } declare const EmptyState: React.SFC; export default EmptyState;