import React from "react";
import { IOptions } from "./types";
import { UltimateTextToImage } from "./UltimateTextToImage";
type IProps = {
    text: string;
    debug?: boolean;
} & IOptions;
export declare class UltimateTextToImageComponent extends React.Component<IProps, any> {
    ultimateTextToImage?: UltimateTextToImage;
    render(): JSX.Element;
}
export {};
