import * as React from 'react';
import { OptionalComponentPropAndHTMLAttributes } from '../../types';
export declare type SpacedGroupProps = {
    /**
     * Set the group to `display: block;` so it fills its parent.
     */
    block?: boolean;
    /**
     * Reduced spacing between items.
     */
    small?: boolean;
    /**
     * Increased spacing between items.
     */
    large?: boolean;
} & OptionalComponentPropAndHTMLAttributes;
declare const _default: React.MemoExoticComponent<(props: SpacedGroupProps) => JSX.Element>;
export default _default;
