import React from 'react'; interface IProps { children: string | React.ReactElement; } export default function (props: IProps): JSX.Element; export {};