import React from 'react'; import { type GlassStackProps } from './GlassStack'; export interface HStackProps extends Omit { /** * Spacing between items (for backward compatibility) */ spacing?: 'none' | 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; /** Glass surface intent */ intent?: 'neutral' | 'primary' | 'success' | 'warning' | 'danger' | 'info'; /** Glass surface elevation */ elevation?: 'level1' | 'level2' | 'level3' | 'level4'; /** Performance tier */ tier?: 'low' | 'medium' | 'high'; /** * Whether to respect user's motion preferences */ respectMotionPreference?: boolean; /** * Accessibility label for screen readers */ 'aria-label'?: string; /** * Accessibility role for semantic meaning */ role?: string; } /** * Horizontal Stack component * Wrapper around GlassStack with direction set to horizontal */ export declare const HStack: React.ForwardRefExoticComponent>; //# sourceMappingURL=HStack.d.ts.map