import { default as React } from 'react'; import { SafeOmit } from '../../../.deps/utils/src'; import { IconButtonProps } from '../../IconButton/IconButton'; interface InheritedIconButtonProps extends SafeOmit { } export interface TreeItemChevronProps extends InheritedIconButtonProps { isExpanded: boolean; } export declare function TreeItemChevron({ isExpanded, ...restProps }: TreeItemChevronProps): React.JSX.Element; export {};