import { JSX, ReactNode } from 'react'; export interface ListDetailsProps { /** * Optional title to show on top of the list */ title?: string; /** * Use component as children */ children?: ReactNode; /** * CSS class name */ className?: string; /** * Font size */ fontSize?: "normal" | "small"; /** * Show skeleton when this is `true` */ isLoading?: boolean; /** * Number of items to show as skeleton rows. Default is `3`. */ loadingLines?: number; } declare function ListDetails({ title, children, fontSize, isLoading, loadingLines, className, }: ListDetailsProps): JSX.Element; declare namespace ListDetails { var displayName: string; } export { ListDetails };