import * as PReact from "./preact-shim.ts";
export interface ImageCharProps {
    x?: number;
    y?: number;
    height?: number;
    fill?: string;
    stroke?: string;
    fontFamily?: string;
    char?: string;
    yOffset?: number;
    fontWeight?: number;
}
export declare const ImageChar: PReact.FunctionComponent<ImageCharProps>;
