import { EntityEidType, BasicInfoAtomType, TransformAtomType } from '../data-type';
export interface Text3DType extends EntityEidType, Partial<BasicInfoAtomType>, Partial<TransformAtomType> {
    text3DStyle?: Partial<Text3DEntityAtomType>;
}
export interface Text3DEntityAtomType {
    text: string;
    color: string;
    type: string;
    outline: number;
    portrait: boolean;
    space: number;
    bounce: number;
}
