export declare const ERROR_MESSAGES: { readonly INVALID_APP: "Invalid NestJS application instance provided"; readonly NO_DISCOVERY_SERVICE: "DiscoveryService not found in application instance"; readonly DIRECTORY_CREATE_FAILED: "Failed to create directory"; readonly FILE_WRITE_FAILED: "Failed to write file"; readonly INVALID_PATH: "Invalid file path provided"; readonly NO_CONTROLLER_METADATA: "No controller metadata found"; readonly NO_ENDPOINT_METADATA: "No endpoint metadata found"; readonly INVALID_METHOD: "Invalid HTTP method"; readonly INVALID_CONFIG: "Invalid configuration provided"; readonly MISSING_REQUIRED_CONFIG: "Missing required configuration options"; }; export type ErrorMessage = keyof typeof ERROR_MESSAGES;