import * as React from 'react'; import { PanelProps } from '../../../components/Panel'; import { AdaptableSystemIconName } from '../../../AdaptableState/Common/AdaptableIcon'; export interface PanelWithButtonProps extends Omit { buttonContent?: React.ReactNode; buttonClick?: () => void; button?: React.ReactElement; headerText: string; bodyProps?: PanelProps['bodyProps']; headerProps?: PanelProps['headerProps'] & { 'data-name': string; }; glyphicon?: AdaptableSystemIconName; buttonDisabled?: boolean; buttonStyle?: string; infoLink?: string; infoLinkDisabled?: boolean; } export declare const PanelWithButton: (props: PanelWithButtonProps) => React.JSX.Element;