import { PropsOf } from '@builder.io/qwik'; type ListProps = PropsOf<'ul'> & PropsOf<'ol'> & { ordered?: boolean; unstyled?: boolean; nested?: boolean; horizontal?: boolean; }; export declare const List: import("@builder.io/qwik").Component; export {};