import React from 'react'; import type { AwesomeButtonProps } from './types'; /** * @deprecated Use AwesomeButtonProps instead. */ export type ButtonTypes = AwesomeButtonProps; declare const AwesomeButton: ({ activityColor, activeOpacity, animatedPlaceholder, backgroundActive, backgroundColor, backgroundDarker, backgroundPlaceholder, backgroundProgress, backgroundShadow, borderColor, borderRadius, borderBottomLeftRadius, borderBottomRightRadius, borderTopLeftRadius, borderTopRightRadius, borderWidth, children, before, after, disabled, height, hitSlop, debouncedPressTime, paddingHorizontal, onPress, onPressIn, onPressedIn, onPressOut, onPressedOut, onProgressStart, onProgressEnd, onLongPress, dangerouslySetPressableProps, progress, paddingBottom, paddingTop, progressLoadingTime, raiseLevel, springRelease, stretch, style, textColor, textLineHeight, textSize, textTransition, textFontFamily, width: rawWidth, extra, }: AwesomeButtonProps) => React.JSX.Element; export default AwesomeButton; //# sourceMappingURL=Button.d.ts.map