import React, { ReactElement, ReactNode } from "react"; export interface ListProps { border?: boolean; children: ReactElement | Array | string | number>; divider?: boolean; listStyle?: "none" | "disc"; onItemRemoveRequest?: (index: number) => void; paddingHorizontal?: number; paddingVertical?: number; } export interface ListItemProps { children: ReactNode; removeItemLabel?: string; } declare const List: ({ border, children, divider, listStyle, onItemRemoveRequest, paddingHorizontal, paddingVertical, }: ListProps) => React.JSX.Element; declare const ListItem: ({ children, removeItemLabel, }: ListItemProps) => React.JSX.Element; export { List, ListItem }; //# sourceMappingURL=List.d.ts.map