import { ColDef } from '@ag-grid-community/core'; export declare const courseRequestListcolumnDefs: ColDef[]; export interface IcolumnDefs { headerName: string; field: string; width?: number; cellRendererFramework?: any; suppressSizeToFit?: boolean; maxWidth?: string; sortable?: boolean; filter?: boolean; resizable?: boolean; } export interface IshowColumns { columnDefs: IcolumnDefs[]; }