import { ComponentProps, PropsWithChildren } from "react"; import { Pressable } from "react-native"; import { WithTestID } from "../../utils/types"; export type PressableModuleBaseProps = WithTestID<{ withLooseSpacing?: boolean; } & Pick, "onPress" | "accessibilityLabel" | "accessibilityHint">>; export declare const PressableModuleBase: ({ onPress, withLooseSpacing, accessibilityLabel, accessibilityHint, testID, children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PressableModuleBase.d.ts.map