import type * as ElevenLabs from "../index";
export interface AddPronunciationDictionaryResponseModel {
    /** The ID of the created pronunciation dictionary. */
    id: string;
    /** The name of the created pronunciation dictionary. */
    name: string;
    /** The user ID of the creator of the pronunciation dictionary. */
    createdBy: string;
    /** The creation time of the pronunciation dictionary in Unix timestamp. */
    creationTimeUnix: number;
    /** The ID of the created pronunciation dictionary version. */
    versionId: string;
    /** The number of rules in the version of the pronunciation dictionary. */
    versionRulesNum: number;
    /** The description of the pronunciation dictionary. */
    description?: string;
    /** The permission on the resource of the pronunciation dictionary. */
    permissionOnResource?: ElevenLabs.AddPronunciationDictionaryResponseModelPermissionOnResource;
}
