import { ActionListItemKind } from '@viasat/beam-shared/components/actionList'; import { default as React } from 'react'; export declare const ActionListSelectionProvider: ({ children, kind, }: { children: React.ReactNode; kind?: ActionListItemKind; }) => import("react/jsx-runtime").JSX.Element; export declare const useActionListItemSelection: (kind: ActionListItemKind, defaultSelected?: boolean, onChange?: (selected: boolean) => void) => { selected: boolean; setSelected: (newSelectedValue: boolean) => void; };