import * as React from "react"; declare type Props = React.PropsWithChildren<{ icon: React.ReactNode; }>; declare const IconText: ({ icon, children }: Props) => JSX.Element; export default IconText;