import * as PReact from "./preact-shim.ts";
export interface SubgraphProps {
    id: string;
    origData?: any;
    text: string;
    width?: number;
    height?: number;
    fill?: string;
    stroke?: string;
    fontHeight?: number;
    fontFamily?: string;
}
export declare const Subgraph: PReact.FunctionComponent<SubgraphProps>;
