import { Cancellation } from '@dolittle/sdk.resilience';
import { Tenant } from './Tenant';
/**
 * Represents a system that knows about Tenants in the Runtime.
 */
export declare abstract class ITenants {
    /**
     * Gets all tenants.
     * @param cancellation - The optional {@link Cancellation}.
     */
    abstract getAll(cancellation?: Cancellation): Promise<Tenant[]>;
}
//# sourceMappingURL=ITenants.d.ts.map