import { PropsWithChildren } from 'react'; import { BaseProps } from '../../@types/base'; import { FontSizesProps } from '../../context/theme/types'; import { SxProps } from '../../lib/styleDictionary'; export type ContainerSize = Pick; export type ContainerProps = PropsWithChildren & { size?: keyof ContainerSize; sx?: SxProps; }>; export declare function Container({ children, size, ...rest }: ContainerProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Container.d.ts.map