export interface IDictionaryComponentOptions {
    dict: IDict;
    abbr: IAbbr;
}
export interface IDict {
    [key: string]: number;
}
export interface IAbbr {
    [key: string]: string;
}
