import { HTMLAttributes } from 'react';
declare function Banner({ id, variant, changeLayout, ...props }: HTMLAttributes & {
/**
* @defaultValue 'normal'
*/
variant?: 'rainbow' | 'normal';
/**
* Change Fumadocs layout styles
*
* @defaultValue true
*/
changeLayout?: boolean;
}): React.ReactElement;
export { Banner };