import { AppConfigArg } from '../../../../config-types';
import { AdminApiContext } from '../../../../clients';
export interface FetchScopesDetailResponse {
    app: {
        requestedAccessScopes: {
            handle: string;
        }[];
        optionalAccessScopes: {
            handle: string;
        }[];
        installation: {
            accessScopes: {
                handle: string;
            }[];
        };
    };
}
export declare function fetchScopeDetail<ConfigArg extends AppConfigArg>(admin: AdminApiContext<ConfigArg>): Promise<FetchScopesDetailResponse>;
//# sourceMappingURL=fetch-scopes-details.d.ts.map