type Spacing = 'xtight' | 'tight' | 'loose' | 'xloose'; type Alignment = 'leading' | 'center' | 'trailing' | 'baseline'; export interface InlineStackProps { /** Position children along the cross axis */ alignment?: Alignment; /** Adjust spacing between children */ spacing?: Spacing; } /** * InlineStack is used to lay out a horizontal row of elements */ export declare const InlineStack: "InlineStack" & { readonly type?: "InlineStack" | undefined; readonly props?: InlineStackProps | undefined; readonly children?: true | undefined; }; export {}; //# sourceMappingURL=InlineStack.d.ts.map