import { ReactNode } from 'react';
export interface ListProps {
children?: ReactNode;
id?: string;
itemType?: "ListItem" | "ListSection";
}
/**
* Is meant to wrap an array of `ListItem` or `ListSection`.
*
* @example
*
* First Item
* Second Item
* Third Item
*
*
* @example
*
* First Item
* Second Item
* Third Item
*
* @see https://design.avayacloud.com/components/web/list-web
*/
export declare const List: {
({ children, id, itemType }: ListProps): import("react/jsx-runtime").JSX.Element;
displayName: string;
};