export interface PronunciationDictionaryAliasRuleRequestModel {
    /** The string to replace. Must be a non-empty string. */
    stringToReplace: string;
    /** Whether the rule should match case-sensitively. */
    caseSensitive?: boolean;
    /** Whether the rule should only match at word boundaries. */
    wordBoundaries?: boolean;
    /** The alias for the string to be replaced. */
    alias: string;
}
