import type { OAuthCredentials, OAuthGrantRefresh } from './common'; export interface OAuthAccessArguments extends OAuthCredentials { /** @description Request the user to add your app only to a single channel. Only valid with a {@link https://api.slack.com/legacy-workspace-apps legacy workspace app}. Defaults to `false`. */ single_channel?: boolean; } export interface OAuthV2AccessArguments extends OAuthCredentials, OAuthGrantRefresh { } export interface OAuthV2ExchangeArguments extends Pick { } //# sourceMappingURL=oauth.d.ts.map