import { FC } from 'react';
export interface HtmlDecodeProps {
/**
* The string with html entities to decode
*
* ```jsx
*
* ```
*/
html: string;
}
/**
* The `HtmlDecoder` simply decodes html entities
*
* Any actual html markup gets stripped before decoding html entities. If you need to render HTML use {@link SafeHtml}
*
* #### Usage
*
* ```jsx
*
* ```
*
* @param props Component properties
*
* @category React Components
*/
export declare const HtmlDecoder: FC;