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