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"; OVER_BIGINT_MAX_NUMBER: "bigint is too big"; UNDER_BIGINT_MIN_NUMBER: "bigint is too small"; }; export type ErrorCollectionValue = typeof ErrorCollection[keyof typeof ErrorCollection];