import { ExportFormat } from './types'; /** * Registry of output formats. New formats are added by registering an * {@link ExportFormat}; the manager looks them up by id. Ships csv/xlsx/pdf. */ export declare class ExportRegistry { private formats; constructor(); register(format: ExportFormat): void; get(id: string): ExportFormat | undefined; ids(): string[]; }