export interface GetDpsFromDevPropsOps { devInfo: any; } export declare const getDpsFromDevProps: ({ devInfo }: GetDpsFromDevPropsOps) => Promise; export interface SetDpCloudStateOps { devInfo: any; dpState: any; dpSchema: any; blackDpCodes?: string[]; timestamp?: number; } export declare const setDpCloudState: ({ dpState, devInfo, dpSchema, blackDpCodes, timestamp, }: SetDpCloudStateOps) => Promise;