import React from "react";
type DotType = {
    active: boolean;
    color: string;
    height: number;
    skew: boolean;
};
export declare const Dot: ({ active, color, height, skew, }: DotType) => React.JSX.Element;
export {};
