import { ParagraphProps } from '../Paragraph';
import { DecorativeLinkProps } from '../DecorativeLink';
export interface UtilityPanelProps {
    /** Text describing the contents of the panel */
    description: ParagraphProps;
    /** Links to display in the panel */
    links?: DecorativeLinkProps[];
}
declare const UtilityPanel: {
    (utilityPanel: UtilityPanelProps): any;
    defaultProps: {
        links: any[];
    };
};
export default UtilityPanel;
