import { ModuleCompute, ModuleDefinition } from '@nodescript/core/types';
type P = {
    id?: string;
    optional?: boolean;
    nullable?: boolean;
    properties: Record<string, any>;
    additionalProperties?: any;
};
type R = unknown;
export declare const module: ModuleDefinition<P, R>;
export declare const compute: ModuleCompute<P, R>;
export {};
