import type { FlowBoardDisplayMode } from '../../../Types/FlowBoardDisplayMode'; import type { FlowBoardScrollMode } from '../../../Types/FlowBoardScrollMode'; /** * Inherited properties from FlowBoard to child components. * * @public */ export interface IFlowBoardInherited { /** * Whether drag and drop is enabled on the board. */ dragdrop?: boolean; /** * The display mode of the board. */ displayMode?: FlowBoardDisplayMode; /** * The scroll mode of the board. */ scrollMode?: FlowBoardScrollMode; } /** * Context for FlowBoard inheritance. * * @public */ export declare const FLOW_BOARD_INHERITANCE_CONTEXT: { __context__: Partial; }; //# sourceMappingURL=FlowBoardInheritanceContext.d.ts.map