import React from 'react'; import './BookmarkButton.scss'; export interface BookmarkButtonProps { className?: string; bookmarkedPage: boolean; onChangeBookmarkPage: (value: boolean) => void; } export declare const BookmarkButton: React.FC;