import { Store } from "@omnia/fx/stores"; import { ReindexContentOmniaSearch, SyncOmniaSearchType } from "../models"; export declare class OmniaSearchPageStore extends Store { private omniaSearchPageService; onActivated(): void; onDisposing(): void; getters: {}; /** * Implementation of mutations */ mutations: {}; /** * Implementation of actions */ actions: { triggerReindexContentOmniaSearchPublishingApp: import("@omnia/fx/stores").StoreAction void, (result: string) => void, (failureReason: any) => void, () => Promise>; triggerReindexOmniaSearchTenant: import("@omnia/fx/stores").StoreAction void, (result: string, syncType: SyncOmniaSearchType) => void, (failureReason: any, syncType: SyncOmniaSearchType) => void, (syncType: SyncOmniaSearchType) => Promise>; pollingReindexContentOmniaSearchStatus: import("@omnia/fx/stores").StoreAction void, (result: ReindexContentOmniaSearch, resourceId: string) => void, (failureReason: any, resourceId: string) => void, (resourceId: string) => Promise>; getReindexContentLogs: import("@omnia/fx/stores").StoreAction void, (result: { total: number; value: ReindexContentOmniaSearch[]; }, resourceId: string, pageNr?: number, pageSize?: number, sortColumn?: string, sortDesc?: boolean) => void, (failureReason: any, resourceId: string, pageNr?: number, pageSize?: number, sortColumn?: string, sortDesc?: boolean) => void, (resourceId: string, pageNr?: number, pageSize?: number, sortColumn?: string, sortDesc?: boolean) => Promise<{ total: number; value: ReindexContentOmniaSearch[]; }>>; }; }