import { PropsWithChildren } from 'react'; import { BlockStackProps } from '@shopify/post-purchase-ui-extensions'; export interface Props extends Omit { spacing?: 'none' | BlockStackProps['spacing']; } export declare function BlockStack({ alignment, spacing, children, }: PropsWithChildren): JSX.Element;