import * as react_jsx_runtime from 'react/jsx-runtime'; import React__default from 'react'; /** * Outer responsive shell for multi-step application flows (e.g. Loan Application). * * - Mobile (< md): full-screen, no extra padding — content fills the viewport. * - Desktop (≥ md): wraps content in a centered max-width card so the flow * doesn't stretch across a wide screen. * * Compose inside this wrapper, then place OnboardingLayout (or similar) as the child. */ interface ApplicationMobileLayoutProps { children: React__default.ReactNode; className?: string; } declare function ApplicationMobileLayout({ children, className, }: ApplicationMobileLayoutProps): react_jsx_runtime.JSX.Element; export { ApplicationMobileLayout, type ApplicationMobileLayoutProps };