import { ConsusRender, SpacingType } from "../../types"; import { ListPaginationBarProps } from "../pagination/ListPaginationBar"; import { ReactElement } from "react"; export interface ListProps { items: any[]; activeItem?: any; onClick?: (item: any) => void; render?: ConsusRender; emptyMessage?: string | ((values?: any) => any) | ReactElement; className?: string; itemSpacing?: SpacingType; paginated?: boolean; loading?: boolean; paginationProps?: Partial; [props: string]: any; } export declare const List: ({ items, activeItem, onClick, render, itemSpacing, emptyMessage, loading, paginated, className, paginationProps, ...props }: ListProps) => import("@emotion/react/jsx-runtime").JSX.Element;