import { Card } from './card'; export declare class CabinetCardIdentifier { id: string; modified?: Date; sourceCiteKey?: string; sourcePage?: number; static CCI_PATTERN: RegExp; static CCI_PATTERN_SINGLE: RegExp; static fromCard(card: Card): CabinetCardIdentifier; toJsonString(): string; static fromJsonString(jsonString: string): CabinetCardIdentifier | undefined; static fromCciMarker(cciMarker: string): CabinetCardIdentifier | undefined; toCciMarker(): string; getCard(cards: Card[]): Card | null; }