import { FC } from 'react';
interface DisplayProps {
    text: string;
}
declare const Display: FC<DisplayProps>;
export default Display;
