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