import React, { Dispatch, MutableRefObject, ReactNode, SetStateAction } from "react";
interface IProps {
    refs: {
        tableContent: MutableRefObject<HTMLDivElement | null>;
        buttons: MutableRefObject<(HTMLSpanElement | null)[]>;
    };
    states: {
        open: {
            get: boolean;
            set: Dispatch<SetStateAction<boolean>>;
        };
    };
    children: ReactNode;
    coordinate: {
        x: number;
        y: number;
    };
}
declare const FilterPopup: ({ children, refs, states, coordinate }: IProps) => false | React.ReactPortal;
export default FilterPopup;
