export { ToolbarShell } from "./Shell"; import { HTMLAttributes } from "react"; interface Props { /** * Glassmorphism backdrop blur * @default true */ glassmorphism: boolean; /** * If the toolbar is raised * @default false */ raised: boolean; /** * Which content this toolbar is for. When that content begins scrolling, it will elevate the toolbar */ htmlFor?: string; } export declare function Toolbar({ children, glassmorphism, className, raised, htmlFor }: HTMLAttributes & Partial): import("react/jsx-runtime").JSX.Element;