/** * The `` component includes built in columns and is used within * the `` component. You can provide an image or video as children, * or text using the `text` prop. */ export function DoDontRow({ children, className }: { children: any; className: any; }): React.FunctionComponentElement>>; export namespace DoDontRow { namespace propTypes { let children: PropTypes.Requireable; let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';