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