import { StoreDefinition } from 'pinia'; export const useCollaboraStore: StoreDefinition<"CollaboraStore", { XMLExtensions: any; loaded: boolean; }, {}, { /** * Initializes the Collabora store by loading the XML extensions and setting the loaded flag to true. */ init(): Promise; /** * Loads the XML file that contains extensions of collabora. */ loadExtensionsXML(): Promise; /** * Checks if a given mimetype and action exist in the loaded XML extensions. * * @param {string} searchedMimetype - The mimetype to search for. * @param {string} searchedAction - The action to search for. * @return {boolean} - True if the mimetype and action exist, false otherwise. */ checkIfExists(searchedMimetype: string, searchedAction: string): boolean; }>; //# sourceMappingURL=collabora.d.ts.map