import { type PropsWithChildren } from 'react'; export type DefaultActionBarContextValue = string | number; export type ActionBarContextValue = { type: 'text' | 'icon'; }; export declare function ActionBarProvider({ children, value }: PropsWithChildren<{ value: ActionBarContextValue; }>): import("react/jsx-runtime").JSX.Element; export declare namespace ActionBarProvider { var displayName: string; } export declare const useActionBar: () => ActionBarContextValue; //# sourceMappingURL=ActionBar.context.d.ts.map