import React, { type PropsWithChildren } from "react"; import { type StyleProp, type ViewStyle } from "react-native"; type Props = { /** * Background color ripple for Android */ background?: string; /** * If true, disable all interactions for this component. */ touchDisabled?: boolean; /** * Define de container style */ style?: StyleProp; /** * Called when the touch is released */ onPress?(): void; }; export declare const Button: (props: PropsWithChildren) => React.JSX.Element; export default Button; //# sourceMappingURL=Button.d.ts.map