import { IQueryParams } from "@leight-core/leight"; import { ButtonProps } from "antd"; import { FC } from "react"; export interface IButtonLinkProps extends Omit { /** * Href goes to generate method (clever link). */ href: string; /** * Title of a button. */ title?: string | null; /** * Optional params for the link generator. */ query?: IQueryParams; } export declare const ButtonLink: FC;