export declare const DEFAULT_MESSAGES: {
    created: string;
    noContent: string;
};
export declare const DEFAULT_ERRORS: {
    unexpectedError: string;
    methodNotAllowed: string;
    notFound: string;
    invalidMediaType: string;
};
export declare const OPEN_API_VERSION = "3.0.1";
export declare enum ValidMethod {
    GET = "GET",
    PUT = "PUT",
    POST = "POST",
    DELETE = "DELETE",
    OPTIONS = "OPTIONS",
    HEAD = "HEAD",
    PATCH = "PATCH"
}
export declare const NEXT_REST_FRAMEWORK_USER_AGENT = "next-rest-framework";
export declare const VERSION: any;
