@letanure/resend-cli
Version:
A command-line interface for Resend email API
12 lines • 438 B
TypeScript
import type React from 'react';
export type NavigationContext = 'menu' | 'form' | 'form-single' | 'result' | 'error-retry' | 'root-menu' | 'none';
interface LayoutProps {
children: React.ReactNode;
headerText?: string;
footerText?: string;
showNavigationInstructions?: boolean;
navigationContext?: NavigationContext;
}
export declare const Layout: React.FC<LayoutProps>;
export {};
//# sourceMappingURL=layout.d.ts.map