import { ComponentPropsWithRef, CSSProperties, ElementType, 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; /** * Render witdh 100% width */ fullWidth?: boolean; /** * Rendering as sepcific element */ as?: T; } & ComponentPropsWithRef>; export declare function ActionsWrapper({ children, className, align, direction, fullWidth, style, spacing, as, ref, center }: ActionsWrapperProps): import("react").DetailedReactHTMLElement, HTMLInputElement>;