/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { ActionSheetProps } from '@progress/kendo-react-layout'; import * as React from 'react'; /** @hidden */ export interface AdaptiveModeProps extends ActionSheetProps { windowWidth?: number; mobileFilter?: React.ReactNode; footer?: { cancelText: string; onCancel: (event: React.MouseEvent) => void; applyText: string; onApply: (event: React.MouseEvent) => void; }; } /** @hidden */ export declare const AdaptiveMode: (props: AdaptiveModeProps) => React.JSX.Element;