/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { ActionSheetChildrenProps } from './interfaces/ActionSheetChildrenProps';
import * as React from 'react';
/**
 * Lists the possible alignment of the ActionSheet action buttons.
 */
export type ActionSheetActionsAlignment = 'start' | 'center' | 'end' | 'stretched' | 'justify';
/**
 * Lists the possible orientations of the ActionSheet action buttons.
 */
export type ActionSheetActionsOrientation = 'horizontal' | 'vertical';
/**
 * The props of the ActionSheetFooter component.
 */
export interface ActionSheetFooterProps extends ActionSheetChildrenProps {
    /**
     * Sets the orientation of the action buttons in the footer. Valid values are `"horizontal"` and `"vertical"`.
     *
     * @default "horizontal"
     */
    actionButtonsOrientation?: ActionSheetActionsOrientation;
    /**
     * Sets the alignment of the action buttons in the footer. This configuration works only in `horizontal` orientation.
     *
     * @default "stretched"
     */
    actionButtonsAlignment?: ActionSheetActionsAlignment;
}
/**
 * @hidden
 */
export declare const footerDisplayName = "ActionSheetFooter";
/**
 * The KendoReact ActionSheetFooter component.
 */
export declare const ActionSheetFooter: React.FunctionComponent<ActionSheetFooterProps>;
