/**
 * Common error messages and user feedback strings
 */
export declare const ERROR_MESSAGES: {
    readonly TOO_MANY_REQUESTS: "Too many requests. Please wait a moment and try again.";
    readonly RATE_LIMITED: "I'm receiving too many requests right now. Please wait a moment and try again.";
    readonly SYSTEM_ERROR: "System error occurred";
    readonly INVALID_INPUT: "Invalid input provided";
    readonly NETWORK_ERROR: "Network error occurred";
};
/**
 * Common success and status messages
 */
export declare const STATUS_MESSAGES: {
    readonly OPERATION_SUCCESSFUL: "Operation completed successfully";
    readonly PROCESSING: "Processing your request...";
    readonly READY: "Ready to process requests";
    readonly INITIALIZING: "Initializing...";
};
