import React, { ReactNode } from 'react';
import { ButtonProps } from "../../mantine";
export declare const Close: ({ children, ...rest }: {
    children: ReactNode;
} & {
    variant?: "error" | "white" | "light" | "secondary" | "primary" | "tertiary" | "ghost" | "success";
    skipHover?: boolean;
    theme?: "marryBaby" | "helloSites";
} & Omit<import("@mantine/core").ButtonProps, "variant"> & React.ButtonHTMLAttributes<HTMLButtonElement> & import("../../types").DataTrackingType) => React.JSX.Element;
