/// import { InlineStack as InlineStackComponent, Props } from './InlineStack'; declare const meta: { component: typeof InlineStackComponent; title: string; argTypes: { demoWidth: { control: { type: string; min: number; max: number; }; }; spacing: { control: { type: string; options: (string | undefined)[]; }; }; alignment: { control: { type: string; options: (string | undefined)[]; }; }; blockAlignment: { control: { type: string; options: (string | undefined)[]; }; }; }; }; export default meta; export declare const InlineStack: { ({ demoWidth, ...args }: Props & { demoWidth: number; }): JSX.Element; args: { demoWidth: number; spacing: undefined; alignment: undefined; blockAlignment: undefined; wrap: boolean; }; story: { name: string; }; };