import type { FC, HTMLAttributes, ReactNode, Ref } from 'react'; export interface PixelBackgroundProps extends HTMLAttributes { ref?: Ref; children?: ReactNode; game?: boolean; excludeCardSize?: { width: number; height: number; }; } export declare const PixelBackground: FC;