import { ButtonProps, VariantType } from '../Button/types'; import { IconType } from '../../atoms/Icon/types'; import type { BadgeProps as ITDSBadgeProps } from '../../feedback/Badge/types'; export type ToggleVariants = 'default' | 'destructive' | 'success'; export type VariantSet = Record; export type ToggleButtonProps = Omit & { onChange?: () => void; Icon?: IconType; isTonal?: boolean; isIconOnly?: boolean; variant?: ToggleVariants; isSelected?: boolean; badgeProps?: ITDSBadgeProps; }; //# sourceMappingURL=types.d.ts.map