import { type ReactElement } from 'react'; import { type LabelProperties } from '../label'; export type CheckboxPanelProperties = LabelProperties; /** * Container to be used with checkbox component to add border and background color. * @docs {@link https://design.visa.com/components/checkbox/?code_library=react | See Docs} */ declare const CheckboxPanel: { ({ className, ...remainingProps }: CheckboxPanelProperties): ReactElement; displayName: string; }; export default CheckboxPanel;