import * as React from "react";
import { FlatList, FlatListProps } from "react-native";
/** Props for the `ListX` component. */
type ListXProps<T> = FlatListProps<T> & {
  ref?: React.Ref<FlatList>;
};
/**
 * Horizontal list component.
 *
 * Use `ContentX` for generic content.
 */
export { type ListXProps };
//# sourceMappingURL=x.d.ts.map