import { ActionOverrideProps, ChannelOverrideProps, EventOverrideProps, InterfaceExtension, ResolvedInterface } from '../integration'; import { InterfacePackage } from '../package'; import { z } from '../zui'; type ResolveInterfaceInput = InterfacePackage & { entities: Record; actions: Record; events: Record; channels: Record; }; type ResolveInterfaceOutput = { resolved: ResolvedInterface; statement: InterfaceExtension; }; export declare const resolveInterface: (intrface: ResolveInterfaceInput) => ResolveInterfaceOutput; export {};