///
import * as React from "react";
export interface IElementRefProps {
/** Ref handler to access the instance of the internal HTML element. */
elementRef?: (ref: E | null) => void;
}
export declare const H1: React.StatelessComponent & IElementRefProps>;
export declare const H2: React.StatelessComponent & IElementRefProps>;
export declare const H3: React.StatelessComponent & IElementRefProps>;
export declare const H4: React.StatelessComponent & IElementRefProps>;
export declare const H5: React.StatelessComponent & IElementRefProps>;
export declare const H6: React.StatelessComponent & IElementRefProps>;
export declare const Blockquote: React.StatelessComponent & IElementRefProps>;
export declare const Code: React.StatelessComponent & IElementRefProps>;
export declare const Pre: React.StatelessComponent & IElementRefProps>;
export declare const Label: React.StatelessComponent & IElementRefProps>;
export declare const OL: React.StatelessComponent & IElementRefProps>;
export declare const UL: React.StatelessComponent & IElementRefProps>;