UNPKG

491 BTypeScriptView Raw
1import { type HTMLChakraProps, type RecipeProps, type UnstyledProp } from "../../styled-system";
2export interface ContainerBaseProps extends RecipeProps<"container">, UnstyledProp {
3}
4export interface ContainerProps extends HTMLChakraProps<"div", ContainerBaseProps> {
5}
6export declare const Container: import("react").ForwardRefExoticComponent<ContainerProps & import("react").RefAttributes<HTMLDivElement>>;
7export declare const ContainerPropsProvider: React.Provider<ContainerBaseProps>;