import { FlowDirection } from '../tokens'; /** * The canvas's resolved `layoutDirection`, provided automatically by * `` to everything rendered inside it. Lets a nested component * (e.g. a `NodeCard`) read the flow's direction without every consumer having * to thread the prop down by hand. * * Defaults to `'LR'` — the same default `FlowBuilder` itself uses — so calling * `useFlowDirection()` outside a `` never throws. */ export declare const FlowDirectionContext: import('../../../../node_modules/react').Context; export declare function useFlowDirection(): FlowDirection;