@vicinae/api
    Preparing search index...

    Variable List

    List: FC<List.Props> & {
        Dropdown: FC<DropdownProps> & {
            Item: FC<DropdownItemProps>;
            Section: FC<DropdownSectionProps>;
        };
        EmptyView: FC<EmptyViewProps>;
        Item: FC<List.Item.Props> & {
            Detail: FC<List.Item.Detail.Props> & {
                Metadata: FC<MetadataProps> & {
                    Label: FC<ListItemDetailMetadataLabelProps>;
                    Link: FC<{ target: string; text: string; title: string }>;
                    Separator: FC<{}>;
                    TagList: FC<TagListProps> & { Item: FC<(...)> };
                };
            };
        };
        Section: FC<List.Section.Props>;
    }