import type { FC } from 'react'; import { type LinkProps } from '../Link'; export type BannerLinkProps = Omit; /** * Inline action link for Banner. * * Rendered next to the title (pass via `BannerTitle`'s `action` prop). The link * color adapts to the variant — light blue on the dark primary banner, default * blue on the light variants. */ export declare const BannerLink: FC;