import type { CSSProperties, SVGAttributes } from 'preact';
type Props = {
    ariaHidden?: boolean;
    fillColor?: string;
    height: number;
    styleOverride?: CSSProperties;
    width: number;
};
export declare const standardSvgAttrs: ({ width, height, styleOverride, ariaHidden, fillColor, }: Props) => Pick<SVGAttributes, "aria-hidden" | "enable-background" | "style" | "viewBox" | "x" | "y">;
export {};
//# sourceMappingURL=svg_boilerplate.d.ts.map