import React from 'react'; import type { GestureResponderEvent, ViewStyle, TextStyle, StyleProp } from 'react-native'; interface Props { visible?: boolean; type?: 'Danger' | 'Success' | 'Warning'; title?: string; textBody?: string; buttonText?: string; secondaryButtonText?: string; contentStyle?: StyleProp; iconContentStyle?: StyleProp; iconColor?: string; textBodyStyle?: StyleProp; headerTextStyle?: StyleProp; buttonStyle?: StyleProp; buttonTextStyle?: StyleProp; secondaryButtonTextStyle?: StyleProp; secondaryButtonStyle?: StyleProp; callback?: (event: GestureResponderEvent) => void; secondaryCallback?: (event: GestureResponderEvent) => void; } export declare const Popup: ({ visible, type, title, textBody, buttonText, secondaryButtonText, secondaryButtonStyle, secondaryButtonTextStyle, headerTextStyle, contentStyle, textBodyStyle, buttonStyle, buttonTextStyle, iconColor, iconContentStyle, callback, secondaryCallback, }: Props) => React.JSX.Element; export {}; //# sourceMappingURL=Popup.d.ts.map