interface CreateAuthorizationCodeRequest {
    'aud'?: (string)[];
    'clientId'?: (string);
    'codeChallenge'?: (string);
    'codeChallengeMethod'?: (string);
    'exp'?: (string);
    'redirectUri'?: (string);
    'sub'?: (string);
    'scope'?: (string);
}
interface CreateAuthorizationCodeRequest__Output {
    'aud': (string)[];
    'clientId': (string);
    'codeChallenge': (string);
    'codeChallengeMethod': (string);
    'exp': (string);
    'redirectUri': (string);
    'sub': (string);
    'scope': (string);
}

export { CreateAuthorizationCodeRequest, CreateAuthorizationCodeRequest__Output };
