import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface DoDontRowProps { children: ReactNode; className?: string | 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 DoDontRow: MdxComponent; export {};