import { SDKBase, ISDKOptions as IO } from 'uno-ws-client';
export declare type TargetType = 'GI' | 'UE' | 'CityPro' | 'WEB';
export interface IOptions extends IO {
    type: TargetType | TargetType[];
}
export declare class IndustrySDK extends SDKBase {
    types: TargetType[];
    readonly ["camera"]: any;
    readonly ["layer"]: any;
    readonly ["billboard"]: any;
    readonly ["climate"]: any;
    readonly ["env"]: any;
    readonly ["map"]: any;
    constructor(props: IOptions);
    sdkParser(msg: any): CustomEvent<{
        error: string;
        data: any;
    }> | CustomEvent<{
        error: boolean;
        data: any;
    }>;
}
