import { type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system"; declare const useEmptyStateStyles: () => Record; export { useEmptyStateStyles }; export interface EmptyStateRootBaseProps extends SlotRecipeProps<"emptyState">, UnstyledProp { } export interface EmptyStateRootProps extends HTMLChakraProps<"div", EmptyStateRootBaseProps> { } export declare const EmptyStateRoot: import("react").ForwardRefExoticComponent>; export declare const EmptyStatePropsProvider: React.Provider; export interface EmptyStateContentProps extends HTMLChakraProps<"div"> { } export declare const EmptyStateContent: import("react").ForwardRefExoticComponent>; export interface EmptyStateIndicatorProps extends HTMLChakraProps<"div"> { } export declare const EmptyStateIndicator: import("react").ForwardRefExoticComponent>; export interface EmptyStateTitleProps extends HTMLChakraProps<"h3"> { } export declare const EmptyStateTitle: import("react").ForwardRefExoticComponent>; export interface EmptyStateDescriptionProps extends HTMLChakraProps<"p"> { } export declare const EmptyStateDescription: import("react").ForwardRefExoticComponent>;