import React from "react";
export interface DropDownProps {
    label?: string;
    href?: string;
}
export declare const DropDown: React.FC<DropDownProps>;
