import { ButtonProps } from "antd"; import { FC } from "react"; export interface IBackLinkProps extends Partial { /** * Text on the button, goes through translation. */ text?: string; } /** * Just a simple back button using react-router under hood to navigate one history entry back. * * Props are passed to underlying Button. * * See: * * - https://ant.design/components/button/ */ export declare const BackLink: FC;