import React, { FC } from 'react'; export interface BackLinkPropsStrict { pageLabel?: string; className?: string; href?: string; onClick?: (e: React.SyntheticEvent) => void; } export interface BackLinkProps extends BackLinkPropsStrict { /** Unstrict Props */ [propName: string]: any; } export declare const BackLink: FC;