import type { TouchableProps } from 'src/theme/themeTypes'; import type themeType from '../theme/theme'; declare function createTouchable(useTheme: () => T): ({ children, pressedChildren, inactiveChildren, pressedStyle, inactiveStyle, press, ...otherProps }: TouchableProps) => JSX.Element; export default createTouchable;