import React from "react"; import { TouchableOpacityProps } from "react-native"; interface Props { loadingComponent?: React.ReactNode; disabled?: boolean; onPress: () => Promise; labelComponent: React.ReactNode; style?: TouchableOpacityProps['style']; } declare const ThrottleButton: ({ loadingComponent, disabled, labelComponent, onPress, style, }: Props) => React.JSX.Element; export default ThrottleButton; //# sourceMappingURL=index.d.ts.map