import Component from './component';
export default class String extends Component {
    /**
     * The Content to be rendered as a string
     */
    content: string;
    constructor(content?: string);
    toString(): string;
}
