///
import { LayoutBreakpoint } from '../types';
import { BoxProps } from '../Box';
export declare type LocalSetProps = {
/** Indicates if the set items should span the width of the set. */
isFilled?: boolean;
/** Indicates the orientation of the set. */
orientation?: 'vertical' | 'horizontal';
/** Sets the spacing between items. */
spacing?: string;
/** Indicates the breakpoint at which the set should become vertical. */
verticalBelow?: LayoutBreakpoint;
};
export declare type SetProps = BoxProps & LocalSetProps;
export declare const Set: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};