import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import { type IllustrationName } from './illustrations'; export { IllustrationList } from './illustrations'; export type { IllustrationName } from './illustrations'; interface IllustrationProps { /** * The name of the illustration to display */ name: IllustrationName; /** * Testing ID for the component */ testID?: string; /** * Width of the illustration */ width?: number; /** * Height of the illustration */ height?: number; /** * Style of the illustration */ style?: StyleProp; } declare const Illustration: ({ name, testID, width, height, style, }: IllustrationProps) => React.JSX.Element | null; export default Illustration;