/** Virtual module prefix for collection imports, e.g. `ecopages:content/docs`. */ export declare const CONTENT_VIRTUAL_MODULE_PREFIX = "ecopages:content"; /** Matches `ecopages:content/` metadata specifiers (no MDX imports). */ export declare const CONTENT_VIRTUAL_MODULE_PATTERN: RegExp; /** Matches `ecopages:content//server` component resolver specifiers. */ export declare const CONTENT_SERVER_VIRTUAL_MODULE_PATTERN: RegExp; export type ParsedCollectionSpecifier = { collectionName: string; variant: 'entries' | 'server'; }; export declare function parseCollectionSpecifier(specifier: string): ParsedCollectionSpecifier | null; export declare function isContentServerVirtualModule(specifier: string): boolean;