UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

9 lines (8 loc) 383 B
import React from 'react'; import { LayoutRectangle } from 'react-native'; import { HintProps } from './types'; interface HintMockChildrenProps extends Pick<HintProps, 'children' | 'backdropColor'> { targetLayout?: LayoutRectangle; } export default function HintMockChildren({ children, backdropColor, targetLayout }: HintMockChildrenProps): React.JSX.Element | null; export {};