import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; interface SwitchProps extends SharedProps { name: string; showMeta?: boolean; metaOn?: string; metaOff?: string; stripLabel?: boolean; checked?: boolean; required?: boolean; disabled?: boolean; validation?: string; forcePx?: boolean; } export type SwitchInnerProps = Pick & { componentClassName?: string; }; /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/switch](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/switch) * - Storybook: [Checkbox](https://designsystem.dn.se/?path=/docs/basic-form-switch--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/switch/switch.scss` */ export declare const Switch: ({ name, checked, showMeta, metaOn, metaOff, disabled, stripLabel, forcePx, classNames, attributes, }: SwitchProps) => import("preact").JSX.Element; export {};