import { PropsWithChildren } from 'react'; import { ViewProps } from '@shopify/checkout-ui-extensions'; declare type Role = 'region' | 'complementary'; export interface Props extends ViewProps { accessibilityLabel?: string; role?: Role; } export declare function View({ accessibilityLabel, accessibilityVisibility, backgroundFit, backgroundImage, backgroundPosition, backgroundRepeat, children, display, id, maxInlineSize, role, visibility, ...props }: PropsWithChildren): JSX.Element; export {};