UNPKG

@churchapps/apphelper

Version:

Library of helper functions for React and NextJS ChurchApps

15 lines 583 B
import React from "react"; import { Stripe } from "@stripe/stripe-js"; import { AnswerInterface, QuestionInterface } from "@churchapps/helpers"; interface Props { answer: AnswerInterface; question: QuestionInterface; noBackground?: boolean; changeFunction: (questionId: string, value: string) => void; churchId?: string; ref?: React.ForwardedRef<any>; stripePromise?: Promise<Stripe>; } export declare const QuestionEdit: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<any>>; export {}; //# sourceMappingURL=QuestionEdit.d.ts.map