/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { SVGIcon } from '@progress/kendo-svg-icons'; import * as React from 'react'; /** * @hidden */ type GridActionSheetFooterProps = { onApply?: (event: React.FormEvent) => void; onReset?: (event: React.FormEvent) => void; submitMessage?: string; resetMessage?: string; submitIcon?: SVGIcon; resetIcon?: SVGIcon; submitDisabled?: boolean; }; /** * @hidden */ export declare const GridActionSheetFooterContent: (props: GridActionSheetFooterProps) => React.JSX.Element; export {};