import * as React from 'react'; import { ViewProps as RNViewProps } from 'react-native'; import { BoxProps } from '../Box'; export declare type LocalLevelProps = { /** Sets the orientation of the level. */ orientation?: 'vertical' | 'horizontal'; /** Sets the spacing of the level when it snaps to a vertical orientation. */ spacing?: string; /** Sets the breakpoint at which the level should become vertical. */ verticalBelow?: string; }; export declare type LevelProps = BoxProps & RNViewProps & LocalLevelProps; export declare const Level: React.ForwardRefExoticComponent & RNViewProps & import("../Box").LocalBoxProps & { active?: boolean; focus?: boolean; hover?: boolean; hoveractive?: boolean; } & LocalLevelProps & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };