UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

16 lines (15 loc) 585 B
import { KendoComponent } from '../_types/component'; export declare const PDFVIEWER_CLASSNAME = "k-pdf-viewer"; declare const states: "disabled"[]; export type KendoPDFViewerProps = { toolbar?: React.JSX.Element; annotations?: boolean; annotationsToolbar?: React.JSX.Element; showSearchPanel?: boolean; blank?: boolean; }; export type KendoPDFViewerState = { [K in (typeof states)[number]]?: boolean; }; export declare const PDFViewer: KendoComponent<KendoPDFViewerState & KendoPDFViewerProps & React.HTMLAttributes<HTMLDivElement>>; export default PDFViewer;