import * as React from 'react';
import type { PolymorphicForwardRefComponent } from '../../utils/index.js';
import type { IconButtonProps } from '../Buttons/IconButton.js';
type TreeNodeExpanderProps = {
    isExpanded?: boolean;
    expanderIconProps?: React.ComponentProps<'svg'>;
} & IconButtonProps;
export declare const TreeNodeExpander: PolymorphicForwardRefComponent<"button", TreeNodeExpanderProps>;
export {};
