import { IViewProps } from '../View'; import { color } from '../utils/propTypes/color'; interface ICardButtonProps extends IViewProps { readonly backgroundColor?: color; readonly autoFocus?: boolean; } declare const CardButton: ({ backgroundColor, ...props }: ICardButtonProps) => JSX.Element; export default CardButton;