@orfeas126/box-ui-elements
Version:
Box UI Elements
12 lines (11 loc) • 437 B
TypeScript
import * as React from 'react';
import './AdvancedContentInsightsToggle.scss';
interface Props {
hasDescription?: boolean;
hasTooltip?: boolean;
isChecked?: boolean;
isDisabled: boolean;
onChange?: (isEnabled: boolean) => void;
}
declare const AdvancedContentInsightsToggle: ({ hasDescription, hasTooltip, isChecked, isDisabled, onChange, }: Props) => React.JSX.Element;
export default AdvancedContentInsightsToggle;