import { HTMLAttributes, ReactNode } from "react"; interface Props { /** * The toolbar to render */ toolbar: ReactNode; /** * The current state of the drawer * @default false */ state: [boolean, (open: boolean) => void]; /** * The content to render before the toolbar. */ before?: ReactNode; /** * The content to render after the toolbar. */ after?: ReactNode; /** * The content to render as a backdrop. */ backdrop?: ReactNode; } export declare function ToolbarShell({ children, className, before, after, toolbar, state: [raised, setRaised], id, backdrop }: Props & HTMLAttributes): import("react/jsx-runtime").JSX.Element; export {};