import { SvelteComponent, Snippet } from 'svelte'; import { HTMLAttributes } from 'svelte/elements'; export interface Props { class?: string; /** * Component's HTML Element * * @default 'div' */ component?: string | typeof SvelteComponent; /** * Object with Tailwind CSS colors classes * */ colors?: { /** * * @default 'bg-black/10 dark:bg-white/15' */ tabbarHighlightBgIos?: string; }; } interface ToolbarPaneProps {} interface ToolbarPaneProps extends Props {} interface ToolbarPaneEvents extends Record<'',{}>{} declare class ToolbarPane extends SvelteComponent< ToolbarPaneProps & Omit, keyof Props>, ToolbarPaneEvents, { } > {} export default ToolbarPane;