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