import { FC } from "react"; import { Options } from "@contentful/rich-text-react-renderer"; import { Document } from "@contentful/rich-text-types"; import { PropsWithClassName } from "../types/style"; export type RteJSON = Document; export interface RteData { json?: RteJSON; } export interface RteProps { data: RteData; options?: Options; } export declare const Rte: FC>; //# sourceMappingURL=index.d.ts.map