/**
 * A locator for other documents to be able to reference a specific dictionary and it's version.
 * This is a pydantic version of PronunciationDictionaryVersionLocatorDBModel.
 * Required to ensure compat with the rest of the agent data models.
 */
export interface PydanticPronunciationDictionaryVersionLocator {
    /** The ID of the pronunciation dictionary */
    pronunciationDictionaryId: string;
    /** The ID of the version of the pronunciation dictionary */
    versionId?: string;
}
