import { ReactNode } from 'react';
import { IButton } from '../atoms/button';
interface IEmptyState {
    heading: string;
    image?: string;
    children: ReactNode;
    footer: ReactNode;
    action: IButton;
    secondaryAction: IButton;
}
export declare const EmptyState: ({ image, heading, children, footer, action, secondaryAction, }: IEmptyState) => import("react/jsx-runtime").JSX.Element;
export {};
