export declare class ListItem {
    readonly id: string;
    name: string;
    value: unknown;
    constructor(name: string, value?: unknown);
}
