import React from 'react';
interface AppBannerProps {
    text?: string;
    backgroundColor?: string;
}
declare const AppBanner: React.FC<AppBannerProps>;
export default AppBanner;
