import * as React from "react"; export interface LayoutProps { children?: React.ReactNode; isColumn?: boolean; style?: React.CSSProperties; } declare const Layout: ({ children, isColumn, style }: LayoutProps) => import("react/jsx-runtime").JSX.Element; export default Layout;