import { EntityEidType, BasicInfoAtomType } from '../data-type';
export interface BoundType extends EntityEidType, Partial<BasicInfoAtomType> {
    moving?: any;
    path?: any;
    boundStyle?: Partial<MoveAlongPathEntityAtomType>;
}
export interface MoveAlongPathEntityAtomType {
    movingEid: string | null;
    pathEid: string | null;
    time: number;
    bLoop: boolean;
    bReverse: boolean;
}
