import { ObjectAbstract } from '../../../common/object-abstract'; import { ResultType, MinMaxType, Coord2DType, BasicInfoAtomType, TransformAtomType } from '../../../common/data-type'; import { RealTimeVideoType, RealTimeVideoEntityAtomType } from '../../../common/interface/realtime-video'; import { ObjectController } from '../../../common/object-controller'; declare class RealTimeVideo extends ObjectController implements ObjectAbstract { className: string; private RealTimeVideoEntityAtom; constructor(opt?: RealTimeVideoType); get url(): string; set url(url: string); get resolution(): MinMaxType; set resolution(resolution: MinMaxType); get offset(): Coord2DType; set offset(offset: Coord2DType); get state(): string; set state(state: string); GetUrl(): Promise; SetUrl(url: string): Promise; GetResolution(): Promise; SetResolution(resolution: MinMaxType): Promise; GetOffset(): Promise; SetOffset(offset: Coord2DType): Promise; GetState(): Promise; SetState(state: string): Promise; GetScheme(): { RealTimeVideoEntityAtom: RealTimeVideoEntityAtomType; }; GetData(): RealTimeVideoType; SetData(opt: RealTimeVideoType): void; generateAtomData(opt: RealTimeVideoType): { RealTimeVideoEntityAtom?: Partial; BasicInfoAtom?: Partial; TransformAtom?: Partial; }; } export default RealTimeVideo;