import { ReactNode } from "react"; import { BoxProps } from "./Box"; import { PatternProps } from "./Pattern"; export declare type PatternCenterProps = { children?: ReactNode; backgroundColor?: BoxProps["backgroundColor"]; foregroundColor?: PatternProps["foregroundColor"]; }; export declare const PatternCenter: ({ children, backgroundColor, foregroundColor, }: PatternCenterProps) => import("@emotion/react/jsx-runtime").JSX.Element;