import React from "react"; import { AlignProp } from "../../registry"; import { PageType, Post } from "../../components/CodeblogContext"; declare type TitleProps = { align?: AlignProp; pageType: PageType; children: React.ReactChildren; post?: Post; ref: React.Ref; }; export declare const H3: React.ComponentType>; export declare const EditorTitle: React.FunctionComponent>; export declare const Title: React.ForwardRefExoticComponent, "pageType" | "post" | "children" | "align"> & React.RefAttributes>; export {};