///
import { Breakpoint } from '../types';
import { FlexProps } from '../Flex';
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; null to disable vertical snapping. */
verticalBelow?: Breakpoint | null;
};
export declare type LevelProps = FlexProps & LocalLevelProps;
export declare const Level: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & {
displayName?: string;
useProps: (props?: Partial, config?: {
disableCSSProps?: string[];
themeKey?: string;
}) => any;
};