13 lines
369 B
TypeScript
13 lines
369 B
TypeScript
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 {};
|