1 | import { type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system";
|
2 | declare const useEmptyStateStyles: () => Record<string, import("../..").SystemStyleObject>;
|
3 | export { useEmptyStateStyles };
|
4 | export interface EmptyStateRootBaseProps extends SlotRecipeProps<"emptyState">, UnstyledProp {
|
5 | }
|
6 | export interface EmptyStateRootProps extends HTMLChakraProps<"div", EmptyStateRootBaseProps> {
|
7 | }
|
8 | export declare const EmptyStateRoot: import("react").ForwardRefExoticComponent<EmptyStateRootProps & import("react").RefAttributes<HTMLDivElement>>;
|
9 | export declare const EmptyStatePropsProvider: React.Provider<EmptyStateRootBaseProps>;
|
10 | export interface EmptyStateContentProps extends HTMLChakraProps<"div"> {
|
11 | }
|
12 | export declare const EmptyStateContent: import("react").ForwardRefExoticComponent<EmptyStateContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
13 | export interface EmptyStateIndicatorProps extends HTMLChakraProps<"div"> {
|
14 | }
|
15 | export declare const EmptyStateIndicator: import("react").ForwardRefExoticComponent<EmptyStateIndicatorProps & import("react").RefAttributes<HTMLDivElement>>;
|
16 | export interface EmptyStateTitleProps extends HTMLChakraProps<"h3"> {
|
17 | }
|
18 | export declare const EmptyStateTitle: import("react").ForwardRefExoticComponent<EmptyStateTitleProps & import("react").RefAttributes<HTMLHeadingElement>>;
|
19 | export interface EmptyStateDescriptionProps extends HTMLChakraProps<"p"> {
|
20 | }
|
21 | export declare const EmptyStateDescription: import("react").ForwardRefExoticComponent<EmptyStateDescriptionProps & import("react").RefAttributes<HTMLParagraphElement>>;
|