import { License as FullLicense } from "./get-managed";
export declare function isManager(license_id: string, account_id?: string): Promise<boolean>;
export interface License extends Partial<FullLicense> {
    number_running?: number;
    is_manager: boolean;
}
export default function getLicense(license_id: string, account_id?: string): Promise<License>;
