import React from 'react';
interface Props {
    children: React.ReactNode;
    bgColor?: string;
    className?: string;
    height?: string;
}
/**
 * Main container for landing pages or sections, allowing dynamic background and height.
 */
declare const LpMainContainer: ({ children, height, bgColor, className, }: Props) => import("react/jsx-runtime").JSX.Element;
export default LpMainContainer;
