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