///
import { FlexProps } from '../Flex';
import { LayoutBreakpoint } from '../types';
export declare type LocalGroupProps = {
/** Sets the border radius of the group. */
borderRadius?: string;
/** Sets the orientation of the group. */
orientation?: 'vertical' | 'horizontal';
/** Sets the breakpoint at which the group should snap to be vertical. */
verticalBelow?: LayoutBreakpoint;
};
export declare type GroupProps = FlexProps & LocalGroupProps;
export declare const Group: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};