import { HttpMethod, OpenAPIParameterData } from './types/openapi'; import { OperationAction } from './types/asyncapi/OperationAction'; export declare const CONTACT_TEXT = "Contact"; export declare const NAM_TEXT = "Name"; export declare const URL_TEXT = "Url"; export declare const EMAIL_TEXT = "Email"; export declare const LICENSE_TEXT = "License"; export declare const TERMS_OF_SERVICE_TEXT = "Terms of service"; export declare const URL_SUPPORT_TEXT = "Support"; export declare const EMAIL_SUPPORT_TEXT = "Email support"; export declare const EXTERNAL_DOCUMENTATION_TEXT = "External Documentation"; export declare const TAGS_TEXT = "Tags"; export declare const IMPLICIT_TEXT = "Implicit"; export declare const IMPLICIT_DESCRIPTION = "The Implicit flow is a simplified OAuth flow previously recommended\n for native apps and JavaScript apps where the access token is returned\n immediately without an extra authorization code exchange step."; export declare const CLIENT_CREDENTIALS_TEXT = "Client Credentials"; export declare const CLIENT_CREDENTIALS_DESCRIPTION = "The Client Credentials grant type is used by clients to obtain an access token outside of the context of a user."; export declare const PASSWORD_TEXT = "Password"; export declare const PASSWORD_DESCRIPTION = "The Password grant type is a legacy way to exchange a user's credentials for an access token."; export declare const AUTHORIZATION_CODE_TEXT = "Authorization Code"; export declare const AUTHORIZATION_CODE_DESCRIPTION = "The Authorization Code grant type is used by confidential and public clients to exchange an authorization code for an access token."; export declare const SERVER_TEXT = "Connecting to a server"; export declare const Operation_TEXT = ""; export declare const chunkColors: string[]; export declare const SHADES: readonly [50, 100, 200, 300, 500, 600, 700]; export declare const PROTOCOL_META: Record; export declare const PARAMETER_GROUPS: Array<{ location: OpenAPIParameterData["in"]; label: string; }>; export declare const METHOD_BADGE_COLOR_CLASSNAME: Record;