zips-react-native-sdk-test
Version:
Lightweight ZIPS Payment Gateway SDK for React Native - Complete payment solution with card payments, wallet payments (AfrMoney & ZApp), netbanking, and native UI design
16 lines (15 loc) • 806 B
TypeScript
import React from 'react';
import { ViewStyle, DimensionValue } from 'react-native';
interface ShimmerProps {
width?: DimensionValue;
height?: DimensionValue;
borderRadius?: number;
style?: ViewStyle;
}
export default function Shimmer({ width, height, borderRadius, style, }: ShimmerProps): import("react/jsx-runtime").JSX.Element;
export declare function ShimmerButton({ style, ...props }: ShimmerProps): import("react/jsx-runtime").JSX.Element;
export declare function ShimmerText({ width, style, ...props }: ShimmerProps): import("react/jsx-runtime").JSX.Element;
export declare function ShimmerCard({ style, ...props }: ShimmerProps): import("react/jsx-runtime").JSX.Element;
export declare const BankGridShimmer: React.FC;
export declare const PaymentFormShimmer: React.FC;
export {};