@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
15 lines • 756 B
TypeScript
type MessageType = 'error' | 'success' | 'warning' | 'info';
interface MessageBoxProps {
type: MessageType;
message: string;
hideTitle?: boolean;
hideBox?: boolean;
marginBottom?: number;
}
type SpecificMessageProps = Omit<MessageBoxProps, 'type'>;
export declare function ErrorMessage(props: SpecificMessageProps): import("react/jsx-runtime").JSX.Element;
export declare function SuccessMessage(props: SpecificMessageProps): import("react/jsx-runtime").JSX.Element;
export declare function WarningMessage(props: SpecificMessageProps): import("react/jsx-runtime").JSX.Element;
export declare function InfoMessage(props: SpecificMessageProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=message-box.d.ts.map