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