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