import * as React from 'react'; import { IGalleryBoard } from './types'; interface IGalleryFooter { currentBoard: IGalleryBoard; handlePublish?: (board: IGalleryBoard) => void; handleSettings?: (board: IGalleryBoard) => void; handleCopy?: (board: IGalleryBoard) => void; handleMuted?: (board: IGalleryBoard) => void; } export declare const GalleryFooter: (props: IGalleryFooter) => React.JSX.Element; export {};