import { Ctx, Atom } from '@reatom/framework';
import { JSX } from './jsx';
import { getColor } from './utils';
export type Props = {
    clientCtx: Ctx;
    getColor: typeof getColor;
    width: Atom<string>;
    height: Atom<string>;
    initSize: number;
};
export declare const Graph: ({ clientCtx, getColor, width, height, initSize, }: Props) => JSX.Element;
//# sourceMappingURL=Graph.d.ts.map