import React from 'react'; import './index.less'; export interface MobileSheetFrameProps { children: React.ReactNode; footer?: React.ReactNode; className?: string; maxHeight?: string; zIndex?: number; } /** * SaleDetail mobile bottom sheet frame. * It owns only the sheet chrome and open state so templates can keep their own layout decisions. */ export declare function MobileSheetFrame({ children, className, footer, maxHeight, zIndex, }: MobileSheetFrameProps): React.JSX.Element;