/** * Represents the properties for the FlowBoardColumnElement. * * @public */ export interface IFlowBoardColumnElementProps { /** * The unique key for the column. */ columnKey: string; /** * Whether the column can be reordered. */ reorderable: boolean; /** * Whether the column is pinned (fixed position). */ pinned: boolean; } /** * Default values for FlowBoardColumnElement properties. * * @public */ export declare namespace IFlowBoardColumnElementProps { const DEFAULTS: IFlowBoardColumnElementProps; } //# sourceMappingURL=IFlowBoardColumnElementProps.d.ts.map