import { BaseItem } from '@cloud-ru/ds-list'; import { WithSupportProps } from '@cloud-ru/ds-utils'; import { ReactNode } from 'react'; export type Action = { tagLabel?: string; icon?: ReactNode; 'data-test-id'?: string; } & Pick; export type MoreActionsProps = WithSupportProps<{ /** Элементы выпадающего списка кнопки с действиями */ moreActions: Action[]; }>; export declare function MoreActions({ moreActions, 'data-test-id': dataTestId, ...rest }: MoreActionsProps): import("react/jsx-runtime").JSX.Element;