import type { FC, HTMLAttributes, Ref } from 'react'; export interface BannerControlsProps extends HTMLAttributes { ref?: Ref; } /** * Trailing controls container for Banner. * * Use this to place action buttons and/or the BannerClose button on the right * side of the banner. Buttons should use size="small". */ export declare const BannerControls: FC;