import * as React from 'react'; import { ClassicScheme, RenderEmit } from '../types'; type NodeExtraData = { width?: number; height?: number; }; export declare const NodeStyles: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, NodeExtraData & { selected: boolean; styles?: (props: any) => any; }>> & string; type Props = { data: S['Node'] & NodeExtraData; styles?: () => any; emit: RenderEmit; }; export type NodeComponent = (props: Props) => JSX.Element; export declare function Node(props: Props): React.JSX.Element; export {}; //# sourceMappingURL=Node.d.ts.map