import { ControllerResponse } from '../types/common.types.js'; interface ExportSpaceOptions { spaceKey: string; outputDir: string; format?: string; ignoreFilters?: string[]; } declare function exportSpace(options: ExportSpaceOptions): Promise; declare const _default: { exportSpace: typeof exportSpace; }; export default _default;