//#region editors/hooks/useAvailableDocumentTypes.d.ts declare function useAvailableDocumentTypes(onlyDocumentTypesFromDriveDocuments?: boolean): string[]; //#endregion //#region editors/hooks/useDebounce.d.ts /** * Reusable debounce hook that calls a callback function after a specified delay * when the value changes. Useful for API calls, search inputs, etc. * * @param value - The value to debounce * @param callback - Function to call with the debounced value (optional) * @param delay - Delay in milliseconds */ declare function useDebounce(value: T, callback: ((value: T) => void) | undefined, delay: number): void; //#endregion export { useAvailableDocumentTypes, useDebounce }; //# sourceMappingURL=index.d.ts.map