import { ICellRendererParams } from 'ag-grid-enterprise'; import { ImportFileHandle, ImportProgress } from '@platforma-sdk/model'; type __VLS_Props = { params: ICellRendererParams & { extensions?: string[]; progress?: ImportProgress; /** * The resolveProgress function is an optional input parameter for the component * that allows tracking the file upload progress in real-time. * By passing resolveProgress, you can ensure that the component * displays accurate progress values for each file as they upload. * How to use it in AgGrid * cellRendererParams: { * resolveProgress: (fileHandle: ImportFileHandle | undefined) => { * const progresses = app.progresses; * if (!fileHandle) return undefined; * else return progresses[fileHandle]; * } * } */ resolveProgress?: (v: ImportFileHandle | undefined) => ImportProgress | undefined; }; }; declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default; //# sourceMappingURL=PlAgCellFile.vue.d.ts.map