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