export declare enum ResetCacheType { event = 0, all = 1 } export declare class ResetCache { type?: ResetCacheType | undefined; des_sport?: string | undefined; cod_disciplina?: number | undefined; cod_manif?: string | undefined; des_manif?: string | undefined; torunament_id?: number | undefined; categoryId?: string | undefined; categoryName?: string | undefined; constructor(type?: ResetCacheType | undefined, des_sport?: string | undefined, cod_disciplina?: number | undefined, cod_manif?: string | undefined, des_manif?: string | undefined, torunament_id?: number | undefined, categoryId?: string | undefined, categoryName?: string | undefined); toData(): { type: ResetCacheType | undefined; des_sport: string | null; cod_disciplina: number | null; cod_manif: string | null; des_manif: string | null; torunament_id: number | null; categoryId: string | null; categoryName: string | null; }; } export declare const ResetCacheConverter: { toFirestore: (data: ResetCache) => { type: ResetCacheType | undefined; des_sport: string | null; cod_disciplina: number | null; cod_manif: string | null; des_manif: string | null; torunament_id: number | null; categoryId: string | null; categoryName: string | null; }; fromFirestore: (doc: any) => ResetCache; };