import { z } from 'zod';
export declare const GetWorkSchema: z.ZodObject<{
    id: z.ZodString;
    mailto: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    id: string;
    mailto?: string | undefined;
}, {
    id: string;
    mailto?: string | undefined;
}>;
export declare function getWork(args: unknown): Promise<{
    content: {
        type: string;
        text: string;
    }[];
    isError?: undefined;
} | {
    content: {
        type: string;
        text: string;
    }[];
    isError: boolean;
}>;
//# sourceMappingURL=get-work.d.ts.map