import * as React from "react"; import type { IconProps } from "../../Icon/index.js"; interface ListItemHandleProps extends Omit { icon?: React.ReactElement; label?: string; } declare const ListItemHandle: ((props: ListItemHandleProps) => React.JSX.Element) & { original: (props: ListItemHandleProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: ((props: ListItemHandleProps) => React.JSX.Element) & { original: (props: ListItemHandleProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types").ComponentDecorator<((props: ListItemHandleProps) => React.JSX.Element) & { original: (props: ListItemHandleProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { ListItemHandle, type ListItemHandleProps };