/// import { Component } from 'react'; import { ISwipeoutPropTypes } from "./PropsType"; export default class Swipeout extends Component { static defaultProps: ISwipeoutPropTypes; openedLeft: any; openedRight: any; constructor(props: any); componentDidMount(): void; componentWillUnmount(): void; onCloseSwipe(ev: any): void; panStartX: any; onPanStart(e: any): void; onPan(e: any): void; contentWidth: any; btnsLeftWidth: any; btnsRightWidth: any; onPanEnd(e: any): void; onBtnClick(ev: any, btn: any): void; _getContentEasing(value: any, limit: any): any; _setStyle(value: any): void; open(value: any, openedLeft: any, openedRight: any): void; close(): void; renderButtons(buttons: any, ref: any): JSX.Element; onClick(me: any, btn: any): (e: any) => void; render(): JSX.Element; }