import { ActionListItemProps } from './ActionList.Item'; import { ActionListItemKind } from '@viasat/beam-shared/components/actionList'; interface UseActionListChildrenOptions { children: React.ReactNode; disabled?: boolean; allowGroups?: boolean; kind?: ActionListItemKind; } export declare const useActionListChildren: ({ children: _children, disabled, allowGroups, kind, }: UseActionListChildrenOptions) => { children: import('react').ReactElement>[]; hasChoiceItems: boolean; }; export {};