/** * Created by nghinv on Fri Jun 18 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import { ViewProps, ViewStyle, StyleProp } from 'react-native'; export interface CardProps extends ViewProps { style?: StyleProp; backgroundColor?: string; shadow?: boolean; borderRadius?: number; children?: React.ReactNode; padding?: number; margin?: number; onPress?: () => void; disabled?: boolean; } declare function Card(props: CardProps): JSX.Element; declare namespace Card { var defaultProps: { borderRadius: number; shadow: boolean; disabled: boolean; }; } declare const _default: React.MemoExoticComponent; export default _default;