import type * as React from "react"; export type ErrorStateProps = { /** Primary heading (default: "Something went wrong") */ title?: string; /** Supporting text below the heading */ description?: string; /** Error message shown in a destructive Alert */ errorMessage?: string; /** Stack trace shown in development only */ errorStack?: string; /** Force the developer details panel to render. Defaults to dev mode. */ showDeveloperDetails?: boolean; /** Action buttons rendered in the card footer */ children?: React.ReactNode; } & Omit, "children">; export declare function ErrorState({ title, description, errorMessage, errorStack, showDeveloperDetails, children, className, ...props }: ErrorStateProps): React.JSX.Element; //# sourceMappingURL=error-state.d.ts.map