import { FC, Ref } from 'react';
import { SwipeUpProps } from '../../atoms/SwipeUp';
import { ButtonProps } from '../Button';
import BottomSheet, { BottomSheetProps } from '@gorhom/bottom-sheet';
export interface SwipeListProps extends SwipeUpProps, BottomSheetProps {
    ref?: Ref<BottomSheet>;
    renderHeader?: () => void;
    actions?: ButtonProps[];
}
declare const SwipeList: FC<SwipeListProps>;
export default SwipeList;
