import firebase from 'firebase/compat/app'; export declare enum BGJobActionEnum { UPDATE_INVENTORY = 0 } export declare enum BGJobStatusEnum { QUEUED = 0, IN_PROGRESS = 1, PAUSED = 2, CANCELED = 3, FINISHED = 4, ERROR = 5 } export default interface IBGJob { readonly id?: string; readonly action: BGJobActionEnum; readonly batch_index?: number; readonly batch_size?: number; readonly error: string; readonly file_data?: { readonly name: string; readonly path: string; }; readonly started_at: Date; readonly finished_at?: Date; readonly canceled_at?: Date; readonly name?: string; readonly started_by: string; readonly canceled_by?: string; readonly status: BGJobStatusEnum; } export interface IInventoryLine { readonly PK_SITPRD: string; readonly FK_SIT: string; readonly PRDCP: string; readonly SITQTY: string; readonly MAXQTY: string; readonly ORDPNT: string; readonly SITLCT: string; readonly LASPUR: string; readonly MTHITV: string; readonly SITLCT2: string; readonly PURQTY: string; readonly ORDQTY: string; readonly RSVQTY: string; readonly TSTQTY: string; readonly SITNAM: string; readonly PRDNUM: string; readonly PRDDES: string; readonly UNTCDE: string; readonly SITDFT: string; readonly SITLCT_1: string; readonly GRPNUM: string; readonly SORTKEY1: string; readonly SORTKEY2: string; } export declare const BgJobConverter: firebase.firestore.FirestoreDataConverter;