import React, { ReactNode } from 'react'; import '@vonage/vwc-action-group'; /** Represents an action-group custom element. * @param {ActionGroupShape | undefined} shape attribute: <VwcActionGroup shape /> * @param {ActionGroupLayout | undefined} layout attribute: <VwcActionGroup layout /> * @param {boolean} tight attribute: <VwcActionGroup tight /> */ declare const VwcActionGroup: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; shape?: any; layout?: any; tight?: boolean | undefined; }) => JSX.Element; export default VwcActionGroup;