import { State } from '../../shared/State';
/**
 * Service Account Scopes object
 */
export type ServiceAccountScope = {
    scope: string;
    description?: string;
    childScopes?: ServiceAccountScope[];
};
/**
 * Get available service account scopes
 * @returns {Promise<ServiceAccountScope>} a promise that resolves to an array of ServiceAccountScope objects
 */
export declare function getServiceAccountScopes({ state, }: {
    state: State;
}): Promise<ServiceAccountScope[]>;
//# sourceMappingURL=EnvServiceAccountScopesApi.d.ts.map