import { PropsWithChildren, Ref } from 'react'; import { FlatList } from 'react-native'; import { DraxAwareFlatListProps } from './types'; declare type DraxAwareFlatlistType = (props: PropsWithChildren> & { ref?: Ref; }) => JSX.Element; export declare const DraxAwareFlatlist: DraxAwareFlatlistType; export {};