import { EmbedDefinition } from '../types'; /** * Google Docs URL regex pattern * Matches: docs.google.com/document/d/DOCUMENT_ID/... * Captures the document ID in group 1. */ export declare const GOOGLE_DOCS_REGEX: RegExp; export declare const matcher: (url: string) => boolean; export declare const googleDocsProvider: EmbedDefinition;