/**
 * @jsxRuntime classic
 * @jsx jsx
 */
import type { FC, HTMLAttributes, ReactNode } from 'react';
type ChevronContainerProps = HTMLAttributes<HTMLSpanElement> & {
    children: ReactNode;
};
/**
 * __Chevron container__
 *
 * A wrapper container around the expand table tree button.
 */
export declare const ChevronContainer: FC<ChevronContainerProps>;
export {};
