import React from 'react';
interface SwipeoutBtnProps {
    backgroundColor?: string;
    color?: string;
    component?: React.ReactNode;
    onPress?: () => void;
    text?: string;
    type?: string;
    underlayColor?: string;
    height?: number;
    width?: number;
    disabled?: boolean;
}
declare const SwipeoutBtn: React.FC<SwipeoutBtnProps>;
export default SwipeoutBtn;
