import z from 'zod';
export declare const messageRetrieveSuggestionsRoute: {
    path: string;
    input: z.ZodUndefined;
    output: z.ZodObject<{
        messages: z.ZodArray<z.ZodObject<{
            content: z.ZodString;
            uuid: z.ZodString;
        }, "strip", z.ZodTypeAny, {
            content: string;
            uuid: string;
        }, {
            content: string;
            uuid: string;
        }>, "many">;
        parentMessageId: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        messages: {
            content: string;
            uuid: string;
        }[];
        parentMessageId: string;
    }, {
        messages: {
            content: string;
            uuid: string;
        }[];
        parentMessageId: string;
    }>;
};
