/**
 * @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';
/**
 * The props that are passed to the TabStripContent by the TabStrip.
 */
export interface TabStripContentProps {
    /**
     * Defines whether the content appearance will be animated.
     */
    animation?: boolean;
    /**
     * The index of the selected tab. Used to indicate which child to render.
     */
    selected?: number;
    /**
     * @hidden
     */
    style?: any;
    /**
     * @hidden
     */
    index?: number;
    /**
     * @hidden
     */
    keepTabsMounted?: boolean;
    /**
     * @hidden
     */
    renderAllContent?: boolean;
    /**
     * @hidden
     */
    children?: React.ReactNode;
    /**
     * @hidden
     */
    contentPanelId?: string;
    /**
     * @hidden
     */
    navItemId?: string;
}
export declare const TabStripContent: React.FC<TabStripContentProps>;
