import React from 'react'; import { ISelectOption as SelectComponentOptions } from '../Select'; export interface IDocumentViewerOptions { selectOptions: SelectComponentOptions[]; documentOptions: SelectComponentOptions[]; } interface IProps { id?: string; options: IDocumentViewerOptions; children?: React.ReactNode; } export declare const DocumentViewer: ({ id, options, children }: IProps) => React.JSX.Element; export {}; //# sourceMappingURL=DocumentViewer.d.ts.map