import * as i0 from "@angular/core"; export interface AnimaxColumn { key: string; label: string; width?: string; sortable?: boolean; align?: 'left' | 'center' | 'right'; } type Row = Record; export declare class AnimaxTableComponent { columns: AnimaxColumn[]; data: Row[]; striped: boolean; sort: { key: string; dir: 'asc' | 'desc'; } | null; get sortedData(): Row[]; toggleSort(key: string): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export {};