import { PropsWithChildren } from 'react'; import { RadioProps } from '@shopify/post-purchase-ui-extensions'; export declare function Radio({ id: explicitId, accessibilityLabel, children, disabled, ...rest }: PropsWithChildren): JSX.Element; interface ControlProps extends Omit { id: string; } export declare const RadioControl: ({ id, name, value, checked, disabled, onChange, }: ControlProps) => JSX.Element; export {};