import { default as React } from 'react'; export interface ActionListProps { /** * The content of the ActionList */ children?: React.ReactNode; /** * Display a Spinner when action list is loading * * @default false */ loading?: boolean; /** * Display a message if no results are found */ noResults?: string; /** * Add a header at the top of ActionList */ header?: React.ReactNode; /** * Add supporting text below the header */ supportingText?: string; /** * Display the default indention or specify a custom indention to align ActionList items */ indent?: boolean | number; /** * Specify if all items in a ActionList are disabled */ disabled?: boolean; /** * Specify the aria-label for the ActionList */ ariaLabel?: string; className?: string; /** * Specify the role of the ActionList * * @default listbox */ role?: string; id?: string; } export declare const ActionList: { ({ children: _children, loading, noResults, header, supportingText, disabled, indent: indentProp, className: _className, ariaLabel, role, id, }: ActionListProps): import("react/jsx-runtime").JSX.Element; Group: ({ children: _children, heading: _heading, divider, kind, className: _className, disabled, noResults, indent: indentProp, role, ...props }: import('./ActionList.Group').ActionListGroupProps) => import("react/jsx-runtime").JSX.Element; Item: import('./ActionList.Item').ActionListItemComponent; IconButton: React.ForwardRefExoticComponent>; };