import type { ViewProps } from 'react-native';
import type { DirectEventHandler, Int32 } from 'react-native/Libraries/Types/CodegenTypes';
export type LayoutChangeEvent = {
    width: Int32;
    height: Int32;
};
export interface NativeProps extends ViewProps {
    paymentMethod: string;
    configuration: string;
    onLayoutChange?: DirectEventHandler<LayoutChangeEvent>;
}
declare const _default: import("react-native/Libraries/Utilities/codegenNativeComponent").NativeComponentType<NativeProps>;
export default _default;
//# sourceMappingURL=NativeCardView.d.ts.map