import React from 'react'; export interface ListProps { className?: string; children?: React.ReactNode; } export declare const List: { ({ className, children }: ListProps): import("react/jsx-runtime").JSX.Element; Item: ({ children, append }: ListItemProps) => import("react/jsx-runtime").JSX.Element; }; export interface ListItemProps { className?: string; children?: React.ReactNode; append?: React.ReactNode; }