import { FC } from "react";
export interface DropDownProps {
    label?: any;
    child: any;
}
export declare const FilterDropdown: FC<DropDownProps>;
