import { FC, HTMLAttributes } from 'react';
/**
* A built-in component to slightly expand content beyond the container's width, `` allows it
* to overflow on both sides.
*
* It's ideal for enhancing the presentation of graphical elements, offering a more immersive and
* visually appealing reading experience.
*
* @example
*
* You can put text, image, video or any component inside.
*
* ### Text
*
*
* _There is nothing to writing. All you do is sit down at a typewriter and **bleed**._
*
* — Ernest Hemingway
*
*
* ### Video
*
*
*
*
*
* ### Full-bleed
*
* You can even make it full-bleed by using ``:
*
* 
*
* @usage
*
* ```mdx filename="MDX"
* import { Bleed } from 'nextra/components'
*
* Hey, I can use **Markdown** syntax here.
*
* 
*
*
*
*
* ```
*/
declare const Bleed: FC<{
/** Extend content to the very edges of its container. */
full: boolean;
} & HTMLAttributes>;
export { Bleed };