import * as React from 'react'; import { ViewProps as RNViewProps } from 'react-native'; 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?: string; }; export declare type SetProps = BoxProps & RNViewProps & LocalSetProps; export declare const Set: React.ForwardRefExoticComponent & RNViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & LocalSetProps & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };