import { PropsWithChildren } from 'react'; import { CheckboxProps } from '@shopify/post-purchase-ui-extensions'; declare type Props = PropsWithChildren; export declare function Checkbox({ id: explicitId, name, accessibilityLabel, error, disabled, children, ...rest }: Props): JSX.Element; interface ControlProps extends Omit { error?: boolean; id: string; } export declare function CheckboxControl({ id, name, value, checked, disabled, error, onChange, }: ControlProps): JSX.Element; export {};