import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface DoDontProps { children: ReactNode; caption?: string | null; captionTitle?: string | null; text?: string | null; aspectRatio?: string | null; color?: string | null; type: 'do' | 'dont'; className?: string | null; colLg?: number | null; colMd?: number | null; } /** * 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 declare const DoDont: MdxComponent; export {};