import { type PropsWithChildren } from 'react'; import { type ActionListProps as PrimerActionListProps, type ActionListItemProps as PrimerActionListItemProps, type ActionListGroupProps as PrimerActionListGroupProps } from '@primer/react/deprecated'; import { type SxProp } from '../../sx'; import type { ActionListDividerProps } from '@primer/react'; type ActionListProps = PropsWithChildren; type ActionListItemProps = PropsWithChildren; type ActionListGroupProps = PropsWithChildren; declare function ActionListGroup(props: ActionListGroupProps): import("react").JSX.Element; declare function ActionListDivider(props: ActionListDividerProps): import("react").JSX.Element; declare const ActionList: import("react").ForwardRefExoticComponent> & { Item: import("react").ForwardRefExoticComponent>; Group: typeof ActionListGroup; Divider: typeof ActionListDivider; }; export type { ActionListProps, ActionListItemProps, ActionListGroupProps }; export { ActionList }; //# sourceMappingURL=ActionList.d.ts.map