import { default as React } from 'react';
import { CardOptions } from '../types';

interface Props {
    options?: CardOptions;
    onChange?: (event: {
        complete: boolean;
        error?: Error;
    }) => void;
    className?: string;
    onComplete?: () => void;
}
export declare const Card: React.FC<Props>;
export {};
