import React from 'react'; import type { ViewProps } from 'react-native'; export interface InterfaceAlertProps extends ViewProps { children?: React.ReactNode; } export type IAlertComponentType = React.ForwardRefExoticComponent & React.PropsWithoutRef> & { Text: React.ForwardRefExoticComponent & React.PropsWithoutRef>; Icon: React.ForwardRefExoticComponent & React.PropsWithoutRef>; }; export type IAlertProps = InterfaceAlertProps;