import { Book, Section } from '../core/types'; import { ExportSelection } from '../core/exporter'; export interface SelectedSection { readonly section: Section; readonly sourceIndex: number; readonly title?: string; } export declare function selectSections(book: Book, selection: ExportSelection): SelectedSection[]; //# sourceMappingURL=section-selection.d.ts.map