import type { Action } from 'svelte/action';
import type { HtmlIngredientProps } from '../types.js';
export interface TreeViewBranchContentProps extends HtmlIngredientProps<'div', HTMLDivElement, never, Action> {
}
declare const TreeViewBranchContent: import("svelte").Component<TreeViewBranchContentProps, {}, "ref">;
type TreeViewBranchContent = ReturnType<typeof TreeViewBranchContent>;
export default TreeViewBranchContent;
