declare const GET_OR_HEAD_HTTP_METHODS: readonly ["get", "head", "subscribe"]; declare const HTTP_METHODS: readonly ["get", "head", "subscribe", "post", "put", "delete", "patch", "options", "connect"]; declare const LOOPBACK_ADDRESSES: string[]; declare const IS_SERVER: boolean; declare const CLIENT_WARNING = "Elysia instance server found on client side, this is not recommended for security reason. Use generic type instead."; declare const DEMO_DOMAIN = "http://e.ly"; declare const ISO8601_REGEX: RegExp; declare const FORMAL_DATE_REGEX: RegExp; declare const SHORTENED_DATE_REGEX: RegExp; declare const BATCH_ENDPOINT = "/batch"; export { BATCH_ENDPOINT, CLIENT_WARNING, DEMO_DOMAIN, FORMAL_DATE_REGEX, GET_OR_HEAD_HTTP_METHODS, HTTP_METHODS, ISO8601_REGEX, IS_SERVER, LOOPBACK_ADDRESSES, SHORTENED_DATE_REGEX };