rsuite
Version:
A suite of react components
13 lines (12 loc) • 505 B
TypeScript
import React from 'react';
import { WithAsProps } from '../@types/common';
declare type LocaleKey = 'unfilled' | 'notSelected' | 'notUploaded';
export interface PlaintextProps extends WithAsProps {
placeholder?: React.ReactNode;
localeKey?: LocaleKey;
}
/**
* Make the component display in plain text, and display default characters when there is no children.
*/
declare const Plaintext: React.ForwardRefExoticComponent<PlaintextProps & React.RefAttributes<unknown>>;
export default Plaintext;