import React from 'react';
import { type InfoBannerProps } from './InfoBanner';
/** InfoBanner that disappears at a certain point in time */
export declare const EphemeralInfoBanner: ({ expireAtMs, ...props }: InfoBannerProps & {
    expireAtMs: number;
}) => React.JSX.Element | null;
