import React from 'react';
export type InfoBannerProps = {
    message: string;
    type: 'warning' | 'alert' | 'announcement';
    expireAtMs?: number;
};
export declare const InfoBanner: ({ message, type }: InfoBannerProps) => React.JSX.Element;
