import React from 'react'; import type { GestureResponderEvent, ViewStyle, TextStyle, StyleProp } from 'react-native'; export type AwesomeContainerProps = { showPopup?: boolean; popupType?: 'Danger' | 'Success' | 'Warning'; popupTitle?: string; popupMessage?: string; onPressPopup?: (event: GestureResponderEvent) => void; onPressSecondaryButton?: (event: GestureResponderEvent) => void; children: React.ReactNode; headerTextStyle?: StyleProp; isLoading?: boolean; buttonText?: string; secondaryButtonTextStyle?: StyleProp; secondaryButtonStyle?: StyleProp; secondaryButtonText?: string; style?: StyleProp; contentStyle?: StyleProp; iconContentStyle?: StyleProp; iconColor?: string; textBodyStyle?: StyleProp; buttonStyle?: StyleProp; overlayStyle?: StyleProp; buttonTextStyle?: StyleProp; spinnerColor?: string; loaderOverlay?: boolean; spinner?: 'CircleFade' | 'Plane' | 'Chase' | 'Bounce' | 'Wave' | 'Pulse' | 'Flow' | 'Swing' | 'Circle' | 'Grid' | 'Fold' | 'Wander'; }; export declare function Container({ showPopup, popupType, popupTitle, popupMessage, onPressPopup, children, isLoading, buttonText, style, contentStyle, iconColor, iconContentStyle, textBodyStyle, buttonStyle, buttonTextStyle, spinner, spinnerColor, headerTextStyle, secondaryButtonText, secondaryButtonStyle, secondaryButtonTextStyle, onPressSecondaryButton, loaderOverlay, overlayStyle, }: AwesomeContainerProps): React.JSX.Element; //# sourceMappingURL=index.d.ts.map