export type ColumnerStoreType = Record; export interface ColumnType { columnId: string; state: keyof typeof states; } declare const states: string[]; export {};