declare class SetupIntentInput {
    userId: string;
}
/**
 * Setup intent and return client token to get access to adding payment method
 */
declare const setupIntent: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, SetupIntentInput, Record<string, any>, {
    clientSecretToken: string | null;
}>;
export { setupIntent as default };
