import { BoxOwnProps } from '../Box/types'; export declare type AppearanceVals = 'minimal' | 'line' | 'pill' | 'solid'; export declare type OrientationVals = 'horizontal' | 'vertical'; export declare type DensityVals = 'compact' | 'regular'; export declare type AlignVals = 'center' | 'end' | 'start'; export declare type DirectionVals = 'ltr' | 'rtl'; export declare type VerticalStateAlignment = 'left' | 'right'; declare type DefaultOrientationRecord = VerticalOrientationRecord | HorizontalOrientationRecord; declare type VerticalOrientationRecord = Record<'vertical', Record>>>; declare type VerticalOrientationAlignmentRecord = Record<'vertical', Record>>>>; declare type HorizontalOrientationRecord = Record<'horizontal', Record>>>; declare type DefaultAppearanceRecord = Record<'minimal' | 'pill' | 'solid', DefaultOrientationRecord>; declare type LineAppearanceRecord = Record<'line', HorizontalOrientationRecord | VerticalOrientationAlignmentRecord>; export declare const variants: DefaultAppearanceRecord | LineAppearanceRecord; export {};