export interface SidebarHeadingProps {
    /** The heading level e.g. H1, H2, etc. */
    level?: number | string;
    /**  The title text shown by the heading */
    title?: string;
}
declare const SidebarHeading: {
    (props: SidebarHeadingProps): any;
    defaultProps: {
        level: number;
        title: string;
    };
};
export default SidebarHeading;
