export declare const CrawlStatus: { readonly Queued: "queued"; readonly Processing: "processing"; readonly Succeeded: "succeeded"; readonly Failed: "failed"; readonly Skipped: "skipped"; readonly Cancelled: "cancelled"; }; export type CrawlStatus = (typeof CrawlStatus)[keyof typeof CrawlStatus];