/// 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; /** Child element whose children are used to identify the purpose of this switch to the user. */ Label: PropTypes.Requireable; isDisabled: PropTypes.Requireable; isSelected: PropTypes.Requireable; onSelect: PropTypes.Requireable<(...args: any[]) => any>; isIncludeExclude: PropTypes.Requireable; }; Label: { (): null; displayName: string; peek: { description: string; }; propName: string; propTypes: { /** Used to identify the purpose of this switch to the user -- can be any renderable content. */ children: PropTypes.Requireable; }; }; }; export default SwitchLabeled; //# sourceMappingURL=SwitchLabeled.d.ts.map