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