/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import * as React from 'react'; export interface ColumnMenuFormProps { /** Whether to show the form */ show?: boolean; /** Event handler for form submission */ onSubmit?: React.FormEventHandler; /** Event handler for form reset */ onReset?: React.FormEventHandler; /** Action buttons or custom action elements */ actions?: React.ReactNode; /** Form content and child elements */ children?: React.ReactNode; } export declare const ColumnMenuForm: React.FunctionComponent; /** * @hidden */ export declare const ColumnMenuFilterForm: React.FunctionComponent;