///
import { BADGE } from '@geometricpanda/storybook-addon-badges';
/**
* ```js
* import { EmptyState } from "@galaxy-ds/core";
* ```
*/
declare const meta: {
component: import("react").FC;
title: string;
parameters: {
badges: BADGE[];
layout: string;
};
};
export default meta;
/**
* EmptyState component spans to 100% of its container's height. Please note that the container or root container must have a height for it to work.
*/
export declare const Default: {
args: {
variant: "default";
title: string;
description: string;
};
};
export declare const Document: {
args: {
variant: "document";
title: string;
description: string;
};
render: (args: {
title?: string | undefined;
description?: string | undefined;
variant?: "default" | "document" | "matter" | "transaction" | "appointment" | undefined;
}) => import("react/jsx-runtime").JSX.Element;
};
export declare const Matter: {
args: {
variant: "matter";
title: string;
description: string;
};
render: (args: {
title?: string | undefined;
description?: string | undefined;
variant?: "default" | "document" | "matter" | "transaction" | "appointment" | undefined;
}) => import("react/jsx-runtime").JSX.Element;
};
export declare const Appointment: {
args: {
variant: "appointment";
title: string;
description: string;
};
render: (args: {
title?: string | undefined;
description?: string | undefined;
variant?: "default" | "document" | "matter" | "transaction" | "appointment" | undefined;
}) => import("react/jsx-runtime").JSX.Element;
};
export declare const Transaction: {
args: {
variant: "transaction";
title: string;
description: string;
};
render: (args: {
title?: string | undefined;
description?: string | undefined;
variant?: "default" | "document" | "matter" | "transaction" | "appointment" | undefined;
}) => import("react/jsx-runtime").JSX.Element;
};