import React, { Ref } from 'react';
import { SwipeListProps } from '../../molecules/SwipeList';
import BottomSheet from '@gorhom/bottom-sheet';
interface SwipeItemSelectionListProps extends Partial<SwipeListProps> {
    ref?: Ref<BottomSheet>;
    data: any[];
    radioButton?: boolean;
    multiselect?: boolean;
    leftSelection?: boolean;
    rightSelection?: boolean;
    onSelection?: (id: string) => {};
}
declare const SwipeItemSelectionList: React.FC<SwipeItemSelectionListProps>;
export default SwipeItemSelectionList;
