import { type Context } from 'react'; export type ActionGroupContextProps = { /** * Whether or not the ActionGroup is collapsed. * @defaultValue false */ isCollapsed: boolean; }; /** * ActionGroup context, used to access the state of the ActionGroup in other components. */ export declare const ActionGroupContext: Context;