/// <reference types="react" />
export declare type ElementPixelatedProps = {
    pixelSize?: number;
};
export declare const ElementPixelated: ({ children, pixelSize }: ElementPixelatedProps & {
    children: JSX.Element;
}) => JSX.Element;
