import { Card } from '../card'; import { ExportOptions, SectionTypes } from './card-exporter-types'; export declare const isQuoteCard: (card: Card) => boolean; export declare const getSectionTitle: (type: SectionTypes, opt: ExportOptions) => string; export declare const getCardQuote: (card: Card) => string; export declare const getWikiPageMetadata: (cards: Card[], opt: ExportOptions) => string; export declare const getCommentTexts: (card: Card, opt?: ExportOptions) => string; export declare const getAllReportCards: (cards: Card[]) => Card[];