import type { Plugin } from '@docusaurus/types'; declare enum DeployType { SNAPSHOT_ONLY = "snapshot-only", DEFAULT = "default" } type CloudConfig = { deploy: DeployType | false; endpoint: string; indexId: string; oramaCloudAPIKey?: string; public_api_key: string; }; type PluginOptions = { analytics?: { enabled: boolean; apiKey: string; indexId: string; }; cloud?: CloudConfig; searchbox?: { [key: string]: any; }; searchButton?: { [key: string]: any; }; }; export default function OramaPluginDocusaurus(ctx: { siteDir: any; generatedFilesDir: any; }, options: PluginOptions): Plugin; export {};