/**
 * @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';
/**
 * Represents the props of the [KendoReact AppBarSection component](https://www.telerik.com/kendo-react-ui/components/layout/appbar/content-arrangement#toc-sections).
 */
export interface AppBarSectionProps {
    /**
     * Represents the child elements that are passed to the AppBarSection.
     */
    children?: any;
    /**
     * Sets additional CSS classes to the AppBarSection.
     */
    className?: string;
    /**
     * Sets additional CSS styles to the AppBarSection.
     */
    style?: React.CSSProperties;
}
