import { AdminApiContext } from '../../../../clients';
export interface RevokeScopesResponse {
    revoked: {
        handle: string;
    }[];
    userErrors: {
        field: string;
        message: string;
    }[];
}
export declare function revokeScopes(admin: AdminApiContext, scopes: string[]): Promise<RevokeScopesResponse>;
//# sourceMappingURL=revoke-scopes.d.ts.map