import type { OAuthScope } from '../utils/config/cli-options';
export declare const MINIMAL_SCOPES: OAuthScope[];
/**
 * THE PKCE code challenge verifier
 * @see https://auth0.com/docs/flows/call-your-api-using-the-authorization-code-flow-with-pkce#create-code-verifier
 */
export declare const OAUTH_CODE_VERIFIER: string;
/** THE PKCE code challenge */
export declare const OAUTH_CODE_CHALLENGE: string;
export declare const OAUTH_STATE_PARAMETER: string;
