export declare const ErrorCollection: {
    INVALID_FORMAT: "invalid format";
    OVER_MAX_NUMBER: "number is too big";
    UNDER_MIN_NUMBER: "number is too small";
    NOT_NUMBER: "input is not number";
    NOT_INTEGER: "number is not integer";
    UNKNOWN_ERROR: "unknown error";
};
export type ErrorCollectionValue = typeof ErrorCollection[keyof typeof ErrorCollection];
