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