/** * @jsxRuntime classic * @jsx jsx */ import { type FC, type ReactNode } from 'react'; /** * __Actions container__ * * A container for actions: primary action, secondary action, and tertiary action. * * @internal */ declare const ActionsContainer: FC<{ children: ReactNode; }>; export default ActionsContainer;