export interface ColumnProperty { label: string; field: string; searchable?: boolean; sortable?: boolean; visible?: boolean; width?: string; } export declare class Column implements ColumnProperty { field: string; label: string; sortable: boolean; searchable: boolean; sorted: 'asc' | 'desc' | null; visible: boolean; width?: string; constructor(options: ColumnProperty); }