import { Base } from "../inputs";
import { TextWiresCharShapePart } from "./text-wires-char-shape-part";
export declare class TextWiresDataDto<T> {
    type: string;
    name: string;
    compound?: T;
    characters?: TextWiresCharShapePart<T>[];
    width: number;
    height: number;
    center: Base.Point3;
}
