import * as React from 'react';
export interface Props {
    /** The content to display inside the layout. */
    children?: React.ReactNode;
}
export default function FooterHelp({ children }: Props): JSX.Element;
