declare const DEFAULT_ERRORS: {
    unexpectedError: string;
    methodNotAllowed: string;
    notFound: string;
    notImplemented: string;
    invalidMediaType: string;
    operationNotAllowed: string;
    invalidRequestBody: string;
    missingRequestBody: string;
    invalidQueryParameters: string;
};
declare enum ValidMethod {
    GET = "GET",
    PUT = "PUT",
    POST = "POST",
    DELETE = "DELETE",
    OPTIONS = "OPTIONS",
    HEAD = "HEAD",
    PATCH = "PATCH"
}
declare const VERSION: any;
declare const HOMEPAGE: any;
declare const DEFAULT_TITLE = "Next REST Framework";
declare const DEFAULT_OG_TYPE = "website";
declare const DEFAULT_DESCRIPTION = "This is an autogenerated documentation by Next REST Framework.";
declare const DEFAULT_FAVICON_URL = "https://raw.githubusercontent.com/blomqma/next-rest-framework/main/docs/static/img/favicon.ico";
declare const DEFAULT_LOGO_URL = "https://raw.githubusercontent.com/blomqma/next-rest-framework/d02224b38d07ede85257b22ed50159a947681f99/packages/next-rest-framework/logo.svg";

export { DEFAULT_DESCRIPTION, DEFAULT_ERRORS, DEFAULT_FAVICON_URL, DEFAULT_LOGO_URL, DEFAULT_OG_TYPE, DEFAULT_TITLE, HOMEPAGE, VERSION, ValidMethod };
