import { PropsWithChildren } from 'react'; import { InlineStackProps } from '@shopify/checkout-ui-extensions'; export interface Props extends InlineStackProps { /** * Specifies the block alignment if elements wrap. * @defaultValue `leading` */ blockAlignment?: 'leading' | 'center' | 'trailing'; } export declare function InlineStack({ spacing, alignment, blockAlignment, children, wrap, }: PropsWithChildren): JSX.Element;