import { IHtmlBlockQuoteProps, IHtmlDivProps, IHtmlQuoteProps, IHtmlTextProps } from "../types"; /** * A convenience wrapper around the Text component that adds default margin top and bottom * values (i.e. my-1) to the className. This is useful for creating the typical margin between * paragraphs of text. * * @example *
Hello, world!
*This is the second paragraph.
*/ export declare function P({ className, ...props }: IHtmlTextProps): import("react/jsx-runtime").JSX.Element; export declare namespace P { var displayName: string; } export declare function B({ className, ...props }: IHtmlTextProps): import("react/jsx-runtime").JSX.Element; export declare namespace B { var displayName: string; } export declare function S({ className, ...props }: IHtmlTextProps): import("react/jsx-runtime").JSX.Element; export declare namespace S { var displayName: string; } export declare function I({ className, ...props }: IHtmlTextProps): import("react/jsx-runtime").JSX.Element; export declare namespace I { var displayName: string; } export declare function Q({ children, cite, className, ...props }: IHtmlQuoteProps): import("react/jsx-runtime").JSX.Element; export declare namespace Q { var displayName: string; } export declare function BlockQuote({ className, cite, ...props }: IHtmlBlockQuoteProps): import("react/jsx-runtime").JSX.Element; export declare namespace BlockQuote { var displayName: string; } export declare function BR({ className, ...props }: Omit