import React, { type ReactElement } from "react"; import type { DataListObject } from "@jobber/components/DataList/DataList.types"; interface ListItemInternalProps { readonly children: ReactElement; readonly item: T; } export declare function DataListItemInternal({ children, item, }: ListItemInternalProps): React.JSX.Element; export {};