UNPKG

@letanure/resend-cli

Version:

A command-line interface for Resend email API

12 lines 425 B
import { type ReactNode } from 'react'; interface ResendContextType { apiKey: string; } interface ResendProviderProps { children: ReactNode; apiKey?: string; } export declare const ResendProvider: ({ children, apiKey: providedApiKey }: ResendProviderProps) => import("react/jsx-runtime").JSX.Element; export declare const useResend: () => ResendContextType; export {}; //# sourceMappingURL=ResendProvider.d.ts.map