import React from 'react';
declare type Props<ItemT> = {
    info: ItemT;
    renderLeftActions?: (info: any) => React.ReactNode;
    renderRightActions?: (info: any) => React.ReactNode;
    isScrolling: boolean;
    closeOnScroll: boolean;
    children?: React.ReactElement | null;
};
export declare const SwipeableRow: <ItemT extends {}>({ info, renderLeftActions, renderRightActions, children, closeOnScroll, isScrolling, }: Props<ItemT>) => JSX.Element;
export {};
//# sourceMappingURL=SwipeableRow.d.ts.map