import type { SharedProps } from '@bonniernews/dn-design-system-web/assets/types/shared-props.ts'; export interface RadioButtonProps { id: string; value: string; label?: string; selected?: boolean; attributes?: {}; } interface RadioButtonGroupProps extends SharedProps { buttons: RadioButtonProps[]; name?: string; error?: boolean; errorMessage?: string; required?: boolean; stripLabel?: boolean; disabled?: boolean; validation?: string; forcePx?: boolean; } /** * - GitHub: [BonnierNews/dn-design-system/web/src/components/radio-button-group](https://github.com/BonnierNews/dn-design-system/tree/main/web/src/components/radio-button-group) * - Storybook: [RadioButtonGroup](https://designsystem.dn.se/?path=/docs/basic-form-radiobuttongroup--docs) * * This component is used to render a group of radio buttons. * * 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/radio-button-group/radio-button-group.scss` */ export declare const RadioButtonGroup: ({ buttons, error, name, errorMessage, required, stripLabel, disabled, forcePx, classNames, }: RadioButtonGroupProps) => import("preact").JSX.Element; export {};