import { Placeholder, Expression, UUID } from '..'; export declare type FunctionCallArgument = Placeholder | { type: 'argument'; data: { id: UUID; label?: string; expression: Expression; }; };