import type * as ElevenLabs from "../../../../index"; /** * @example * { * name: "name" * } */ export interface BodyCreateServiceAccountV1ServiceAccountsPost { name: string; /** List of groups with their permission levels to share with by default. Each entry should specify a group_id and a permission_level (admin, editor, or viewer). */ defaultSharingGroups?: ElevenLabs.DefaultSharingGroupConfig[]; }