export interface GridColumn { field: string; header: string; width?: string; sortable?: boolean; } export interface GridOptions { selector: string; columns: GridColumn[]; data: Record[]; } //# sourceMappingURL=Grid.types.d.ts.map