import React from 'react'; import { ToolbarPageInputProps } from './page-input'; import { ToolbarZoomInputProps } from './zoom-input'; export interface ToolbarProps extends ToolbarPageInputProps, ToolbarZoomInputProps { /** * pdf 文件 url */ fileUrl: string; /** * pdf 文件名称 */ fileName: string; } export declare function Toolbar(props: ToolbarProps): React.ReactElement; export default Toolbar; //# sourceMappingURL=index.d.ts.map