import { ConfluenceSpaceDetailed, ConfluencePageV2, // Using V2 for page listing ConfluencePageDetailedV2 } from './vendor.atlassian.confluence.types.js'; declare function getSpaceDetails(spaceKey: string): Promise; declare function listAllPagesInSpace(spaceId: string, // Assuming numeric space ID for v2 API status?: string[]): Promise; declare function getPageDetails(pageId: string): Promise; declare const _default: { getSpaceDetails: typeof getSpaceDetails; listAllPagesInSpace: typeof listAllPagesInSpace; getPageDetails: typeof getPageDetails; }; export default _default;