import { ReactNode } from "react"; export declare type PopupClosePlacement = "top-right" | "top-left" | "bottom-right" | "bottom-left"; export interface PopupCloseProps { placement?: PopupClosePlacement; children?: ReactNode; } export default function PopupClose(props: PopupCloseProps): JSX.Element;