UNPKG

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