/// <reference types="react" />
import { ProviderProps } from '../../types';
interface Props extends ProviderProps {
    color?: string;
    icon?: 'A' | 'B' | 'C' | 'D';
}
declare const Drift: ({ color, icon, containerClass }: Props) => JSX.Element | null;
export default Drift;
