/// <reference types="react" />
import { IdProps } from "./interface/IdProps";
import { StyleProps } from "./interface/StyleProps";
export interface PixelBorderProps extends IdProps, StyleProps, React.PropsWithChildren<any> {
    doubleSize?: boolean;
    doubleRoundCorners?: boolean;
}
export declare const PixelBorder: (props: PixelBorderProps) => import("react/jsx-runtime").JSX.Element;
