/** * helps interpolating a custom webcomponent property * with the context in which is embedded. * Taking properties and writing their values as handlebars it is possible * to access the context `args` that should represent where the button was clicked, * and element-composer features, like current signed up user and http client headers * @param properties * @param args * @param elementComposerProps * @param options * @returns */ export declare function interpolateCustomComponentProps(properties: Record, args?: any[], elementComposerProps?: Record, options?: { noEscape: boolean; }): Record;