import type AgGridCommunity from 'ag-grid-community'; type AgGridModule = { createPart: typeof AgGridCommunity.createPart; themeAlpine: typeof AgGridCommunity.themeAlpine; [key: string]: any; }; declare const getIxTheme: (agModule: AgGridModule) => AgGridCommunity.Theme; declare const getIxThemeAsync: (importModule: () => Promise | AgGridModule) => Promise>; export { getIxTheme, getIxThemeAsync };