import ListComponent from "./list"; import ListPlaceholder from "./list-placeholder"; export type { ListDirection, ListThemeVars } from "./list.shared"; type ListType = typeof ListComponent & { Placeholder: typeof ListPlaceholder; }; declare const List: ListType; export default List; export type { ListInstance } from "./list.shared";