declare type CustomMethodDecorator = (target: Object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor) => TypedPropertyDescriptor | void; export interface ComponentDecorator { (opts?: ComponentOptions): ClassDecorator; } export interface ComponentOptions { /** * When set to `true` this component will be form-associated. See * https://stenciljs.com/docs/next/form-associated documentation on how to * build form-associated Stencil components that integrate into forms like * native browser elements such as `` and `