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