import React from "react";
import DefaultButton from "../Buttons/DefaultButton";
export interface EmptyStateProps {
    children?: React.ReactNode;
    title: string;
    action?: typeof DefaultButton;
    secondaryAction?: typeof DefaultButton;
    image: string;
}
export declare const EmptyState: ({ title, children, action, secondaryAction, image, }: EmptyStateProps) => React.JSX.Element;
