import { default as React } from 'react'; import { ActionListItemKind } from '@viasat/beam-shared/components/actionList'; export interface ActionListGroupProps extends React.ComponentPropsWithoutRef<'div'> { /** * Add list items to create a ActionList.Group */ children?: React.ReactNode; /** * Add a heading on top of a group */ heading?: string | React.ReactNode; /** * Display the default indention or specify a custom indention to align ActionList items */ indent?: boolean | number; /** * Add a divider at the bottom of this group * * @default false */ divider?: boolean; /** * Specify what kind of items render in the group * * @default action */ kind?: ActionListItemKind; /** * Specify if a group is disabled */ disabled?: boolean; /** * Display a message if no results are found */ noResults?: React.ReactNode; /** * Specify the role of the group * * @default group */ role?: string; } export declare const ActionListGroup: ({ children: _children, heading: _heading, divider, kind, className: _className, disabled, noResults, indent: indentProp, role, ...props }: ActionListGroupProps) => import("react/jsx-runtime").JSX.Element;