///
import * as uui from '@epam/uui';
type MultiSwitchMods = {
/**
* Defines component color.
* @default 'blue'
*/
color?: 'blue' | 'gray50' | 'gray' | uui.MultiSwitchProps['color'];
/**
* Defines component size.
* @default '36'
*/
size?: '24' | '30' | '36' | '42' | '48' | '60';
};
/** Represents the properties for the MultiSwitch component. */
export type MultiSwitchProps = uui.MultiSwitchCoreProps & MultiSwitchMods;
export declare const MultiSwitch: (props: import("@epam/uui-core").IEditable & import("@epam/uui-core").IHasRawProps> & {
items: (uui.ButtonProps & {
id: any;
})[];
} & MultiSwitchMods & import("react").RefAttributes) => import("react").ReactElement>;
export {};
//# sourceMappingURL=MultiSwitch.d.ts.map