///
import PropTypes from 'prop-types';
import { StandardProps } from '../../util/component-types';
export interface ISwitchLabeledProps extends StandardProps {
isDisabled: boolean;
isSelected: boolean;
onSelect: any;
}
declare const SwitchLabeled: {
(props: ISwitchLabeledProps): JSX.Element;
defaultProps: {
isDisabled: boolean;
isSelected: boolean;
onSelect: (...args: any[]) => void;
};
displayName: string;
peek: {
description: string;
categories: string[];
madeFrom: string[];
};
propTypes: {
/**
Appended to the component-specific class names set on the root element.
*/
className: PropTypes.Requireable;
/**
Passed through to the root element.
*/
style: PropTypes.Requireable