ar-design
Version:
AR Design is a (react | nextjs) ui library.
21 lines (20 loc) • 600 B
TypeScript
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;