import { Orientation } from "../../layout"; import { ReactNode } from "react"; export interface ToolbarContextType { orientation?: Orientation; disabled?: boolean; } export declare const ToolbarContext: import("react").Context; export declare function useToolbarContext(): [ToolbarContextType, boolean]; export declare type UseToolbarPropsReturn = ToolbarContextType; export declare function useToolbarProps(): [UseToolbarPropsReturn, boolean]; export interface ClearToolbarProps { children?: ReactNode; } export declare function ClearToolbar({ children }: ClearToolbarProps): JSX.Element;