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