import { PromptResponse } from '../../../types';
export type MailgunCredentials = {
    domain: string;
    apiKey: string;
};
export declare const getMailgunCredentials: (domain: string | undefined) => MailgunCredentials | PromptResponse;
export declare const getMailgunApiKey: () => string | PromptResponse;
