export declare const proxyInputs: (Cmp: any, inputs: string[]) => void; export declare const proxyMethods: (Cmp: any, methods: string[]) => void; /** * GCDS modification * Replaced * fromEvent(el, eventName) * to * new EventEmitter() * From: https://github.com/ionic-team/stencil-ds-output-targets/blob/9524c1ce970770e01afb493c292f71a2fe61b14a/packages/angular-output-target/angular-component-lib/utils.ts#L38 */ export declare const proxyOutputs: (instance: any, events: string[]) => void; export declare const defineCustomElement: (tagName: string, customElement: any) => void; export declare function ProxyCmp(opts: { defineCustomElementFn?: () => void; inputs?: any; methods?: any; outputs?: any; }): (cls: any) => any;