import { CSSProperties, PropsWithChildren } from 'react'; export type ActionsWrapperProps = PropsWithChildren<{ /** * Custom class name */ className?: string; /** * Alignment of the items */ align?: 'left' | 'right' | 'spread'; /** * Direction of the wrapper */ direction?: 'row' | 'column'; /** * Center the content vertically */ center?: boolean; /** * Custom inline style */ style?: CSSProperties; /** * Inline spacing */ spacing?: string; /** * */ fullWidth?: boolean; }>; export declare const ActionsWrapper: ({ children, className, align, direction, fullWidth, style, spacing, center }: ActionsWrapperProps) => JSX.Element;