export declare const API_RESPONSE_MESSAGES: { readonly SUCCESS: "Success"; readonly CREATED: "Created successfully"; readonly UPDATED: "Updated successfully"; readonly DELETED: "Deleted successfully"; readonly NOT_FOUND: "Resource not found"; readonly BAD_REQUEST: "Bad request"; readonly UNAUTHORIZED: "Unauthorized"; readonly FORBIDDEN: "Forbidden"; readonly INTERNAL_SERVER_ERROR: "Internal server error"; readonly VALIDATION_ERROR: "Validation error"; }; export declare const HTTP_STATUS_CODES: { readonly OK: 200; readonly CREATED: 201; readonly NO_CONTENT: 204; readonly BAD_REQUEST: 400; readonly UNAUTHORIZED: 401; readonly FORBIDDEN: 403; readonly NOT_FOUND: 404; readonly CONFLICT: 409; readonly UNPROCESSABLE_ENTITY: 422; readonly INTERNAL_SERVER_ERROR: 500; }; export declare const PAGINATION: { readonly DEFAULT_PAGE: 1; readonly DEFAULT_LIMIT: 10; readonly MAX_LIMIT: 100; }; export declare const JWT: { readonly ACCESS_TOKEN_EXPIRY: "15m"; readonly REFRESH_TOKEN_EXPIRY: "7d"; readonly ALGORITHM: "HS256"; }; export declare const DATABASE: { readonly DEFAULT_TIMEOUT: 30000; readonly MAX_CONNECTIONS: 10; readonly MIN_CONNECTIONS: 2; }; export declare const LOG_LEVELS: { readonly ERROR: "error"; readonly WARN: "warn"; readonly INFO: "info"; readonly DEBUG: "debug"; }; export declare const MICROSERVICE_NAMES: { readonly USER_MANAGEMENT: "user-management"; readonly TRANSACTION: "transaction"; readonly BALANCE: "balance"; readonly API_GATEWAY: "api-gateway"; }; export declare const ENV: { readonly DEVELOPMENT: "development"; readonly STAGING: "staging"; readonly PRODUCTION: "production"; readonly TEST: "test"; };