/// <reference types="react" />
import { BaseProps } from '../type';
interface HourglassProps extends Omit<BaseProps, 'color'> {
    colors?: [string, string];
}
export default function Hourglass({ visible, width, height, wrapperClass, wrapperStyle, ariaLabel, colors, }: HourglassProps): JSX.Element | null;
export {};
