import { PropsWithChildren } from 'react'; import { ChoiceListProps as CheckoutChoiceListProps, ChoiceProps as CheckoutChoiceProps } from '@shopify/checkout-ui-extensions'; export interface ChoiceListProps extends PropsWithChildren> { } export interface ChoiceProps extends PropsWithChildren { } export declare function ChoiceList({ name, value, onChange, children, }: PropsWithChildren>): JSX.Element; export declare function Choice({ id, disabled, accessibilityLabel, children, }: PropsWithChildren): JSX.Element;