import { ReactNode } from "react"; import { BoxProps } from "./Box"; export declare type CenterProps = { children?: ReactNode; } & BoxProps; export declare const Center: ({ children, ...props }: CenterProps) => import("@emotion/react/jsx-runtime").JSX.Element;