import React from 'react'; import { DefaultProps, FlowindSize } from '../../../styles'; import { InputWrapperBaseProps, InputWrapperStylesNames } from '../../input'; export type SwitchGroupStylesNames = InputWrapperStylesNames; export interface SwitchGroupProps extends DefaultProps, InputWrapperBaseProps, Omit, 'onChange'> { /** components only */ children: React.ReactNode; /** Value of currently selected checkbox */ value?: string[]; /** Initial value for uncontrolled component */ defaultValue?: string[]; /** Called when value changes */ onChange?: (value: string[]) => void; /** Predefined label fontSize, checkbox width, height and border-radius */ size?: FlowindSize; /** Props spread to InputWrapper */ wrapperProps?: Record; } export declare const SwitchGroup: React.ForwardRefExoticComponent>;