/// import { BlockStackProps as Props } from '@shopify/checkout-ui-extensions'; import { BlockStack as BlockStackComponent } from './BlockStack'; declare const meta: { component: typeof BlockStackComponent; title: string; argTypes: { spacing: { control: { type: string; options: (string | undefined)[]; }; }; alignment: { control: { type: string; options: (string | undefined)[]; }; }; }; }; export default meta; export declare const BlockStack: { ({ ...args }: Props): JSX.Element; args: { spacing: undefined; alignment: undefined; }; story: { name: string; }; };