import type { EmptyStateProps } from './types/empty-state-types.js'; /** * Use the `EmptyState` component to give feedback to an * end-user in case there is no data available. There are cases where this data is * missing, requires special permission, or has not been yet created, for example. * @public */ export declare const EmptyState: ((props: EmptyStateProps & import("react").RefAttributes) => import("react").ReactElement | null) & { Actions: (props: import("./slot-components/Actions.js").EmptyStateActionsProps & import("react").RefAttributes) => import("react").ReactElement | null; Details: (props: import("./slot-components/Details.js").EmptyStateDetailsProps & import("react").RefAttributes) => import("react").ReactElement | null; Footer: (props: import("./slot-components/Footer.js").EmptyStateFooterProps & import("react").RefAttributes) => import("react").ReactElement | null; Title: (props: import("./slot-components/Title.js").EmptyStateTitleProps & import("react").RefAttributes) => import("react").ReactElement | null; Visual: (props: import("./slot-components/Visual.js").EmptyStateVisualProps & import("react").RefAttributes) => import("react").ReactElement | null; VisualPreset: (props: import("./types/empty-state-types.js").EmptyStateVisualPresetProps & import("react").RefAttributes) => import("react").ReactElement | null; };