export type PhoneticType = 'halfwidthKatakana' | 'fullwidthKatakana' | 'Hiragana' | 'noConversion'; export type PhoneticAlignment = 'noControl' | 'left' | 'center' | 'distributed'; export interface WorksheetPhoneticProperties { /** Font index in the workbook's stylesheet for the furigana glyphs. */ fontId?: number; /** Conversion mode the IME should default to when adding furigana. */ type?: PhoneticType; /** Horizontal alignment of the furigana strip relative to the base text. */ alignment?: PhoneticAlignment; } export declare const makeWorksheetPhoneticProperties: (opts?: WorksheetPhoneticProperties) => WorksheetPhoneticProperties;