export interface ISN { /** 简称 */ shorthand?: string; /** 全称 */ full: string; } /** 拆分全称加简称 */ export declare const getSN: (value?: string) => ISN | undefined; /** 组合全称加简称 */ export declare const getItemName: (value: ISN) => string; /** 设置全称 */ export declare const setFull: (name?: string, full?: string) => string | undefined; /** 设置简称 */ export declare const setShorthand: (name?: string, shorthand?: string) => string | undefined; /** 组合全称加简称 */ export declare const getItemNameWithShorthand: (value: ISN) => string;