/** * 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 DoDont({ children, caption, captionTitle, text, aspectRatio, color, type, className, colLg, colMd }: { children: any; caption: any; captionTitle: any; text: any; aspectRatio: any; color: any; type: any; className: any; colLg: any; colMd: any; }): React.FunctionComponentElement>>; export namespace DoDont { namespace defaultProps { let colLg: number; let colMd: number; let color: string; } namespace propTypes { export let aspectRatio: PropTypes.Requireable; export let caption: PropTypes.Requireable; export let captionTitle: PropTypes.Requireable; export let children: PropTypes.Requireable; export let className: PropTypes.Requireable; let colLg_1: PropTypes.Requireable; export { colLg_1 as colLg }; let colMd_1: PropTypes.Requireable; export { colMd_1 as colMd }; let color_1: PropTypes.Requireable; export { color_1 as color }; export let text: PropTypes.Requireable; export let type: PropTypes.Validator; } } import React from 'react'; import PropTypes from 'prop-types';