import React, { PropsWithChildren } from 'react'; import { ViewProps } from '@shopify/checkout-ui-extensions'; interface SectionContext { level?: number; } export declare const SectionContext: React.Context; interface Props extends ViewProps { /** * A label to use for the section title that will be used for buyers using * assistive technologies. */ accessibilityLabel?: string; } export declare function Section({ accessibilityLabel, background, border, borderColor, borderRadius, borderWidth, padding, children, }: PropsWithChildren): JSX.Element; export {};