import React from 'react'; import type { CommonComponentProps, MarginModifierProp, ModifierClassProp } from '../types'; import type { GetRef } from '../utils/refs'; interface ListProps extends CommonComponentProps, MarginModifierProp, ModifierClassProp { children?: React.ReactNode; getRef?: GetRef; id?: string; type?: 'ordered' | 'unordered'; variant?: 'plain' | 'fancy'; } export declare function List({ _modifierClass, 'aria-label': ariaLabel, 'aria-labelledby': ariaLabelledby, 'aria-describedby': ariaDescribedby, children, getRef, id, margin, type, variant, ...rest }: ListProps): React.JSX.Element; export {};