import type { ListProps } from "./list";
export interface LinkListProps extends Omit<ListProps, "listStyle"> {
    children?: React.ReactElement<HTMLLIElement> | React.ReactElement<HTMLLIElement>[];
}
/**
 * Show a list of links
 *
 * For other list types use `UnorderedList` and `OrderedList`, or use your own list component using the semantic `ul` and `ol` tags.
 */
export declare const LinkList: import("react").ForwardRefExoticComponent<LinkListProps & import("react").RefAttributes<HTMLUListElement>>;
//# sourceMappingURL=link-list.d.ts.map