import { z } from 'zod'; import { ServiceBubble } from '../../types/service-bubble-class.js'; import type { BubbleContext } from '../../types/bubble.js'; import { CredentialType } from '@bubblelab/shared-schemas'; declare const HelloWorldParamsSchema: z.ZodObject<{ name: z.ZodString; message: z.ZodDefault>; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { message: string; name: string; credentials?: Partial> | undefined; }, { name: string; message?: string | undefined; credentials?: Partial> | undefined; }>; type HelloWorldParamsInput = z.input; type HelloWorldParams = z.output; declare const HelloWorldResultSchema: z.ZodObject<{ greeting: z.ZodString; success: z.ZodBoolean; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; greeting: string; }, { error: string; success: boolean; greeting: string; }>; type HelloWorldResult = z.output; export declare class HelloWorldBubble extends ServiceBubble { static readonly service = "nodex-core"; static readonly authType: "none"; static readonly bubbleName = "hello-world"; static readonly type: "service"; static readonly schema: z.ZodObject<{ name: z.ZodString; message: z.ZodDefault>; credentials: z.ZodOptional, z.ZodString>>; }, "strip", z.ZodTypeAny, { message: string; name: string; credentials?: Partial> | undefined; }, { name: string; message?: string | undefined; credentials?: Partial> | undefined; }>; static readonly resultSchema: z.ZodObject<{ greeting: z.ZodString; success: z.ZodBoolean; error: z.ZodString; }, "strip", z.ZodTypeAny, { error: string; success: boolean; greeting: string; }, { error: string; success: boolean; greeting: string; }>; static readonly shortDescription = "Simple hello world bubble for testing purposes"; static readonly longDescription = "\n A basic hello world bubble that demonstrates the NodeX bubble system.\n Use cases:\n - Testing the bubble execution system\n - Validating NodeX integration\n - Learning bubble development patterns\n "; static readonly alias = "hello"; constructor(params?: HelloWorldParamsInput, context?: BubbleContext); protected chooseCredential(): string | undefined; testCredential(): Promise; protected performAction(context?: BubbleContext): Promise; } export {}; //# sourceMappingURL=hello-world.d.ts.map