import * as React from 'react'; import { IGalleryBoard } from './types'; interface IBoard { currentPage: number; currentBoard: IGalleryBoard; setPage: (page: number) => void; boards: Array; handleShare?: (board: IGalleryBoard) => void; handleFavorite?: (board: IGalleryBoard) => void; handleDuplicate?: (board: IGalleryBoard) => void; hasPadding?: boolean; } export declare const Boards: (props: IBoard) => React.JSX.Element; export {};