/**
 * This file was auto-generated by Fern from our API Definition.
 */
import * as Intercom from "../index";
/**
 * A list of admins associated with a given workspace.
 */
export interface AdminList {
    /** String representing the object's type. Always has the value `admin.list`. */
    type: "admin.list";
    /** A list of admins associated with a given workspace. */
    admins: Intercom.Admin[];
}
