import { ReactNode } from "react"; import { BoxProps } from "./Box"; export declare type PatternProps = { children?: ReactNode; foregroundColor?: string; backgroundColor?: string; opacity?: number; } & Omit; export declare const Pattern: ({ children, foregroundColor, backgroundColor, opacity, ...props }: PatternProps) => import("@emotion/react/jsx-runtime").JSX.Element;