import { DetailedHTMLProps, FC, HTMLAttributes } from 'react';
/**
* DOM attributes required to redact text from systems like FullStory and Heap
*
* @example
* ```tsx
*
Private text will be redacted
* ```
*
* @note `className` is likely to conflict with other props, so it is recommended to use the `` component
* instead. If you must use `redactProps`, be sure to spread it after other props.
* ```tsx
*
Private text will be redacted
// className will be overridden here
* ```
*/
export declare const redactProps: {
className: string;
'data-heap-redact-text': string;
};
/**
* Redact children text from systems like FullStory and Heap
*
* @example
* ```tsx
* Private text will be redacted
*
*
*
* ```
*/
export declare const Redact: FC, HTMLSpanElement>>;