import { EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface RasterType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
    rasterStyle?: Partial<RasterEntityAtomType>;
}
export interface RasterEntityAtomType {
    path: string;
    type: string;
    gradientSetting: Array<string>;
}
