import { Vue } from 'vue-property-decorator';
export default class TextElement extends Vue {
    private readonly isAlternative;
    private readonly fontSize;
    private readonly fontWeight;
    private readonly lineHeight;
    get styles(): {
        color: string;
        'font-size': string;
        'font-weight': string;
        'line-height': string;
    };
}
