import * as React from 'react';
type DropDownProps = {
    funcss?: string;
    children: React.ReactNode;
    id?: string;
    side?: string;
};
declare const DropDown: ({ funcss, children, id, side, }: DropDownProps) => React.JSX.Element;
export default DropDown;
