import { type CodePaintOptions } from './code-paint.js'; import { type TableSortOptions } from './table-sort.js'; export interface ViewerOptions extends TableSortOptions, CodePaintOptions { } export interface ViewerAttachment { refresh(): void; unmount(): void; } export declare function attachViewer(root: HTMLElement, options?: ViewerOptions): ViewerAttachment; //# sourceMappingURL=attach.d.ts.map