import { type HTMLAttributes } from "react";
export interface ListItemNextProps extends HTMLAttributes {
/**
* If true, the particular list item in list will be disabled.
*/
disabled?: boolean;
/**
* List item id.
*/
id?: string;
/**
* List item value.
*/
value: string;
}
export declare const ListItemNext: import("react").ForwardRefExoticComponent>;