import React from 'react'; interface StripePaymentProps { setting: { stripePaymentStatus: true | false | 0 | 1; stripeDisplayName: string; stripePublishableKey: string; stripeSecretKey: string; stripeEndpointSecret: string; stripePaymentMode: string; }; } export default function StripePayment({ setting: { stripePaymentStatus, stripeDisplayName, stripePublishableKey, stripeSecretKey, stripeEndpointSecret, stripePaymentMode } }: StripePaymentProps): React.JSX.Element; export declare const layout: { areaId: string; sortOrder: number; }; export declare const query = "\n query Query {\n setting {\n stripeDisplayName\n stripePaymentStatus\n stripePublishableKey\n stripeSecretKey\n stripeEndpointSecret\n stripePaymentMode\n }\n }\n"; export {};