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