import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { ButtonType, ValidColor } from '../../types/commonTypes'; type Props = { button: ButtonType; color?: ValidColor; style?: StyleProp; }; export declare const CardButton: ({ button, color, style }: Props) => React.JSX.Element; export {};