import { CSSProperties, FunctionComponent } from 'react';
import './index.less';
export interface Props {
    style?: CSSProperties;
    className?: string;
    hideHeader?: boolean;
    title?: string;
    url?: string;
}
export declare const Help: FunctionComponent<Props>;
export interface HelpContainerProps {
    config: string;
}
export default function HelpContainer(props: HelpContainerProps): JSX.Element;
