import { default as React, ReactNode } from 'react'; export interface ContentProps { children: ReactNode; className?: string; backgroundColor?: string; isColumn?: boolean; style?: React.CSSProperties; } export declare const Content: ({ children, className, backgroundColor, isColumn, style, }: ContentProps) => import("react/jsx-runtime").JSX.Element; export default Content;