import React from 'react'; export interface PdfToolbarProps extends Omit, 'title'> { value?: string; title?: React.ReactNode; leftRef?: React.Ref; rightRef?: React.Ref; centerIds?: string[]; hide?: boolean; } declare const PDFToolbar: (props: PdfToolbarProps) => import("react/jsx-runtime").JSX.Element; export default PDFToolbar;