import React from 'react'; import { FlintList as FlintListElement } from '@getufy/flint-ui/list/flint-list'; /** * flint-list: A wrapper for list items. */ export interface FlintListProps extends React.HTMLAttributes { /** Whether to disable the default padding on the list. */ disablePadding?: boolean; /** Whether to use compact spacing for list items. */ dense?: boolean; } export declare const FlintList: React.ForwardRefExoticComponent>;