/// <reference types="react" />
import { ReactElement } from '../@declares';
declare namespace LinkifyText {
    type Input = {
        text: string;
        placeholder?: ReactElement;
    };
}
declare const LinkifyText: React.FC<LinkifyText.Input>;
export { LinkifyText, LinkifyText as default };
