import React, { FC, MouseEvent } from 'react'; export interface PropsType { checked: boolean; disabled?: boolean; value: string; name: string; 'data-testid'?: string; onChange(change: { checked: boolean; event: MouseEvent; }): void; } declare const CorporateCheckbox: FC>; export default CorporateCheckbox;