export interface IOptionsProps { url?: string; color: string; bgColor: string; icon: string; isOnline: boolean; } /**根据设备类型和状态获取设备展示图标 */ export declare const getCameraTypeIcon: (type: any, status: any) => IOptionsProps;