import type { SchemaBase } from './dsl.js'; export interface MethodSchema extends SchemaBase { /** Owning schema name, e.g. 'payDao'. */ owner: string; } export type SequenceSchema = MethodSchema[]; export declare function defineMethod(options: { name: string; owner: string; description?: string; }): MethodSchema;