/** * A property decorator that converts a class property into a getter that * executes a querySelector on the element's light DOM Slot. * * @ExportDecoratedItems */ export declare function querySlot(selector: string): (protoOrDescriptor: any, name?: string | number | symbol) => any; /** * A property decorator that converts a class property into a getter * that executes a querySelectorAll on the element's light DOM Slot. * * @ExportDecoratedItems */ export declare function querySlotAll(selector: string): (protoOrDescriptor: any, name?: string | number | symbol) => any;