import { Base } from '../base'; export declare function getCustomerShortName(name: string): string; export declare class Customer extends Base { name: string; /** 是否启用 */ enable: boolean; /** 是否支持 */ support: boolean; constructor(props?: Partial); }