/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { LiHTMLAttributes, PropsWithChildren } from 'react';
export type UnorderedListItemProps = PropsWithChildren<LiHTMLAttributes<HTMLLIElement>>;
export declare const UnorderedListItem: import("react").ForwardRefExoticComponent<LiHTMLAttributes<HTMLLIElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLLIElement>>;
