import React from "react"; declare type TVariant = "primary" | "secondary"; declare type TSize = "big" | "small"; interface DSButtonGroupProps { variant?: TVariant; size?: TSize; fullWidth?: boolean; items: { id: string; label: React.ReactNode; }[]; selectedId?: string; onChange: (id: string) => void; id?: string; disabled?: boolean; error?: boolean; } export declare function DSButtonGroup({ variant, size, fullWidth, items, selectedId, onChange, id, disabled, error }: DSButtonGroupProps): JSX.Element; export {};