import { ColorVariant } from '../../colors'; export declare function TriState({ state, size, className, color, }: { state: 'loading' | 'success' | 'error'; size?: 'sm' | 'md' | 'lg'; className?: string; color?: ColorVariant; }): import("react").JSX.Element;