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.SFC & IElementRefProps>; export declare const H2: React.SFC & IElementRefProps>; export declare const H3: React.SFC & IElementRefProps>; export declare const H4: React.SFC & IElementRefProps>; export declare const H5: React.SFC & IElementRefProps>; export declare const H6: React.SFC & IElementRefProps>; export declare const Blockquote: React.SFC & IElementRefProps>; export declare const Code: React.SFC & IElementRefProps>; export declare const Pre: React.SFC & IElementRefProps>; export declare const Label: React.SFC & IElementRefProps>; export declare const OL: React.SFC & IElementRefProps>; export declare const UL: React.SFC & IElementRefProps>;