import React from 'react'; import { DefaultProps, MantineSize } from '@asuikit/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?: MantineSize; /** Props spread to InputWrapper */ wrapperProps?: Record; } export declare const SwitchGroup: React.ForwardRefExoticComponent>; //# sourceMappingURL=SwitchGroup.d.ts.map