import * as React from 'react'; export interface Props { /** * Component's HTML Element * * @default 'div' */ component?: string | React.ComponentType; /** * Object with Tailwind CSS colors classes * */ colors?: { /** * * @default 'bg-black/10 dark:bg-white/15' */ tabbarHighlightBgIos?: string; }; } // @ts-ignore interface ToolbarPaneProps extends Omit, keyof Props>, Props { ref?: React.Ref; } declare const ToolbarPane: React.ComponentType; export default ToolbarPane;