import React from "react"; import { ViewStyle, PressableProps } from "react-native"; declare type Props = { disabled?: boolean; children: React.ReactNode; style?: ViewStyle; onPress?: () => void; } & PressableProps; export default function Touchable({ children, disabled, onPress, style, ...props }: Props): JSX.Element; export declare const SEED_DATA: { name: string; tag: string; description: string; category: string; layout: {}; props: { onPress: { label: string; description: string; group: string; formType: string; propType: string; defaultValue: null; editable: boolean; required: boolean; }; }; }; export {};