import { GraphQLObjectType, GraphQLInputObjectType } from 'graphql';
import { Context } from '../context';
import { PaymentProvider } from "../../../payment-api/src";
export declare const GraphQLPaymentProvider: GraphQLObjectType<PaymentProvider, Context>;
export declare const GraphQLPaymentMethod: GraphQLObjectType<import("@prisma/client/runtime/library").GetResult<{
    id: string;
    createdAt: Date;
    modifiedAt: Date;
    name: string;
    slug: string;
    description: string;
    paymentProviderID: string;
    active: boolean;
}, unknown> & {}, Context>;
export declare const GraphQLPublicPaymentMethod: GraphQLObjectType<import("@prisma/client/runtime/library").GetResult<{
    id: string;
    createdAt: Date;
    modifiedAt: Date;
    name: string;
    slug: string;
    description: string;
    paymentProviderID: string;
    active: boolean;
}, unknown> & {}, Context>;
export declare const GraphQLPaymentMethodInput: GraphQLInputObjectType;
