import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface CheckboxProps extends SharedProps { error?: boolean; errorMessage?: string; label?: string; stripLabel?: boolean; checked?: boolean; required?: boolean; disabled?: boolean; name?: string; validation?: string; forcePx?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/checkbox](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/checkbox) * - Storybook: [Checkbox](https://designsystem.dn.se/?path=/docs/basic-form-checkbox--docs) * * The component will not include styling by itself. Make sure to include the right styles for the component. See example below: * `@use '@bonniernews/dn-design-system-web/components/checkbox/checkbox.scss` */ export declare const Checkbox: ({ error, errorMessage, label, stripLabel, name, validation, checked, required, disabled, forcePx, classNames, attributes, }: CheckboxProps) => import("preact").JSX.Element; export default Checkbox;