import React, { FC } from "react";
type Props = {
    children: React.ReactNode;
};
declare const CardCapture: FC<Props>;
export default CardCapture;
