import type { WidgetState } from '../../stores'
/**
* State extension owned by the ChangeColumn action. Stored on the per-widget
* Zustand store; read by `
` (and any other column-aware bridge) to
* resolve the effective column order.
*/
export interface ChangeColumnWidgetState extends WidgetState {
/** Ordered list of column ids. Empty / unset means "use props order". */
columnOrder?: readonly string[]
}