import { MinMaxType, Coord2DType, EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface WindowType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
    windowStyle?: Partial<WindowEntityAtomType>;
}
export interface WindowEntityAtomType {
    url: string;
    size: MinMaxType;
    offset: Coord2DType;
}
