export { default as mountRoutes } from "./src/mounter"; export { MounterError } from "./src/errors/Mounter-error"; export { sanitizePath } from "./src/utils/sanitize-path"; import mountRoutes from "./src/mounter"; import { MounterError } from "./src/errors/Mounter-error"; import { sanitizePath } from "./src/utils/sanitize-path"; /** * Default export containing all utility functions */ declare const _default: { /** Mount routes with validation and duplicate detection */ mountRoutes: typeof mountRoutes; /** Custom error class for mounter-specific errors */ MounterError: typeof MounterError; /** Utility function to sanitize paths */ sanitizePath: typeof sanitizePath; }; export default _default;