declare const ErrorCodes: { APPROXIMATED_PI_ERROR: string; CHOOSE_CORRECT_NUM_ERROR: string; EMPTY_RESPONSE_ERROR: string; EXTRA_SYMBOLS_ERROR: string; FILL_ALL_CELLS_ERROR: string; INVALID_CHOICE_SELECTION: string; INVALID_SELECTION_ERROR: string; MISSING_PERCENT_ERROR: string; MULTIPLICATION_SIGN_ERROR: string; NEEDS_TO_BE_SIMPLIFIED_ERROR: string; NOT_NONE_ABOVE_ERROR: string; USER_INPUT_EMPTY: string; USER_INPUT_TOO_LONG: string; WRONG_CASE_ERROR: string; WRONG_LETTER_ERROR: string; }; export type ErrorCode = (typeof ErrorCodes)[keyof typeof ErrorCodes]; export default ErrorCodes;