import React from "react"; import { BorderProps, ClassNameProps, InnerBorderProps, PaddingProps } from "./types"; export declare const MjmlColumn: ({ children, ...rest }: React.PropsWithChildren) => React.DOMElement<{}, Element>; export interface MjmlColumnProps { width?: string | number | undefined; verticalAlign?: React.CSSProperties["verticalAlign"] | undefined; backgroundColor?: React.CSSProperties["backgroundColor"] | undefined; innerBackgroundColor?: React.CSSProperties["backgroundColor"] | undefined; }