import type { ReactNode } from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; export type ButtonProps = { readonly children: ReactNode; readonly onPress: () => void; readonly disabled?: boolean; /** NativeWind class; resolved via the `./nativewind` interop. */ readonly className?: string; readonly style?: StyleProp; /** Deterministic `accessibilityIdentifier` for the pressable. */ readonly testID?: string; }; export declare function Button({ children, onPress, disabled, style, testID }: ButtonProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=button.d.ts.map