import { type TextProps } from './Text';
interface BannerProps extends TextProps {
    children: string;
}
export default function Banner({ children, ...props }: BannerProps): JSX.Element | null;
export {};
