declare type BoxProps = { checkeredBackground?: boolean; className?: string; showcaseStyle?: string; } & JSX.IntrinsicAttributes & Partial; export declare const Box: ({ checkeredBackground, className, showcaseStyle, ...rest }: BoxProps) => JSX.Element; export {};