import React from 'react';
interface Props {
    allowPlaceholderText?: boolean;
    text: string;
}
export default function Placeholder(props: Props): React.JSX.Element;
export {};
