import React from 'react'; import { IGalleryBoard } from './types'; interface IGalleryHeader { handleRename?: (board: IGalleryBoard) => void; handleLeave?: (board: IGalleryBoard) => void; handleDelete?: (board: IGalleryBoard) => void; handleMuted?: (board: IGalleryBoard) => void; currentBoard: IGalleryBoard; enableSettingsActions?: boolean; } export declare const GalleryHeader: (props: IGalleryHeader) => React.JSX.Element | null; export {};