import z from 'zod';
export declare const dataMiningMessagesAllRoute: {
    path: string;
    input: z.ZodObject<{
        organizationId: z.ZodOptional<z.ZodString>;
        contactId: z.ZodString;
    }, "strip", z.ZodTypeAny, {
        contactId: string;
        organizationId?: string | undefined;
    }, {
        contactId: string;
        organizationId?: string | undefined;
    }>;
    output: z.ZodUnknown;
};
