rn-custom-alert-prompt
Version:
ReactNative Alert & Prompt with no dependencies
11 lines (10 loc) • 388 B
TypeScript
import React from 'react';
import { PersonalTheme } from './types/alertTypes';
type Props = {
animationType?: 'none' | 'fade' | 'slide';
appearance?: 'light' | 'dark';
personalTheme?: PersonalTheme;
theme?: 'ios' | 'android';
};
export declare function AlertContainer({ theme, appearance, personalTheme, animationType, }: Props): React.JSX.Element | undefined;
export {};