import { HTMLAttributes } from 'react';
export interface SectionGroupProps extends HTMLAttributes {
/**
* Additional style for the section group container.
*/
className?: string;
/**
* Layout direction of the section group.
* @default 'vertical'
*/
direction?: 'horizontal' | 'vertical';
}
/**
* The react component for `mezzanine` section group.
* Use this to compose multiple sections with consistent gap.
*/
declare const SectionGroup: import("react").ForwardRefExoticComponent>;
export default SectionGroup;