import React from "react"; import { RenderLeafProps } from "slate-react"; interface LeafProps extends RenderLeafProps { fontSize?: number; isAutoSize: boolean; } export declare function Leaf(props: LeafProps): React.ReactElement; export {};