import { ReportType } from './UserReports.js';

interface BookmarkStoreData {
    reportId: string;
    id: string;
    variantId?: string;
    type?: ReportType;
    automatic?: boolean | undefined;
}

export type { BookmarkStoreData };
