import GirafeHTMLElement from '../../base/GirafeHTMLElement.js';
export default interface IGirafePanel {
isPanelVisible: boolean;
panelTitle: string;
panelTogglePath: string;
togglePanel(isVisible: boolean): void;
}
export declare function isGirafePanel(element: IGirafePanel | GirafeHTMLElement | Node): element is IGirafePanel;