type Options = {
    onReady?: () => void;
    onError?: (e: {
        code?: number | string;
        message: string;
    }) => void;
    onClose?: () => void;
};
export declare const showCard: (url: string, options?: Options) => void;
export {};
