import { FC, BaseHTMLAttributes } from "react";
export interface IBackLinkProps extends BaseHTMLAttributes<HTMLAnchorElement> {
    /** Children type of node or string */
    children: string;
    /** CSS classes */
    className?: string;
}
/**
 * Back link component
 */
export declare const BackLink: FC<IBackLinkProps>;
//# sourceMappingURL=BackLink.d.ts.map