import { PropsWithChildren, FunctionComponent } from 'react'; import { BookmarkPayloadResponse } from '@equinor/fusion'; type Props = PropsWithChildren<{ onBookmarkApplied?: (bookmark: BookmarkPayloadResponse, awaitForContextSwitch: boolean) => void; onBookmarkDeleted?: () => void; onBookmarkEdited?: () => void; }>; export declare const BookmarkProvider: FunctionComponent; export default BookmarkProvider;