import React, { ReactNode } from 'react'; import { AnimationProps, FractalSharedStyleProps } from '../../../sharedProps'; import { ButtonVariant } from './types'; export interface ToggleButtonProps extends FractalSharedStyleProps, AnimationProps { variant: ButtonVariant; active?: boolean; useGrayVariant?: boolean; children?: (color: string) => ReactNode | ReactNode[]; style?: any; onPress?: () => void; onActiveChange?: (active: boolean) => void; disabled?: boolean; } declare const ToggleButton: React.ForwardRefExoticComponent>; export { ToggleButton };