import type { ValuesOf } from '../../Types/ValuesOf'; /** * `FlowBoardScrollMode` - Defines scroll mode for FlowBoard component. * * @public */ export declare const FlowBoardScrollMode: { /** * Board scroll mode - Scrolls the entire board horizontally. */ readonly Board: "board"; /** * Column scroll mode - Scrolls each column vertically. */ readonly Column: "column"; }; /** * @public */ export type FlowBoardScrollMode = ValuesOf; //# sourceMappingURL=FlowBoardScrollMode.d.ts.map