import { Action, AtomCache, LinkedListAtom } from '@reatom/framework';
import { JSX } from '../jsx';
interface Params {
    patch: AtomCache;
    svg: SVGElement;
}
export interface Lines extends LinkedListAtom<[Params], JSX.Element, never> {
    highlight: Action<[Params], void>;
    redraw: Action<[svg: SVGElement]>;
}
export declare const reatomLines: (name: string) => Lines;
export {};
//# sourceMappingURL=reatomLines.d.ts.map