/** * Options for the query selector decorators. If `refresh` is set to true, * the property will be refreshed on every render. */ export interface QuerySelectorOptions { refresh?: boolean; } /** * Defines a component class property as containing the * results of a `querySelector(selector)` call on * the component host element. */ export declare function QuerySelector(selector: string, options?: QuerySelectorOptions): PropertyDecorator; /** * Defines a component class property as containing the * results of a `querySelectorAll(selector)` call on * the component host element. */ export declare function QuerySelectorAll(selector: string, options?: QuerySelectorOptions): PropertyDecorator;