import { MinMaxType, Coord2DType, EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface RealTimeVideoEntityAtomType {
    url: string;
    resolution: MinMaxType;
    offset: Coord2DType;
    state: string;
}
export interface RealTimeVideoType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
    realTimeVideoStyle?: Partial<RealTimeVideoEntityAtomType>;
}
