import * as React from "react"; import { ButtonProps } from "antd/es/button"; declare type type = "ai" | "ai-gradient-pink"; export declare type Props = Omit & { type: type; leftIcon?: React.ReactNode; rightIcon?: React.ReactNode; tooltip?: React.ReactNode; }; export declare const ButtonProtecCustom: ({ type, leftIcon, rightIcon, tooltip, children, loading, className, ...props }: Props) => JSX.Element; export {};