import { ActionListItemKind } from '@viasat/beam-shared/components/actionList'; import { ReactNode } from 'react'; interface ActionListItemContextValue { kind: ActionListItemKind; } export declare const ActionListItemContext: import('react').Context; export declare const ActionListItemContextProvider: ({ kind, children, }: ActionListItemContextValue & { children: ReactNode; }) => import("react/jsx-runtime").JSX.Element; export declare const useActionListItemContext: (kind: ActionListItemKind) => ActionListItemContextValue; export {};