import { Constructor } from "../../tools/constructor.js"; export declare function mixinSetups>(Base: C): { new (...args: any[]): { [x: string]: any; #setups: Set<() => () => void>; #setdowns: Set<() => void>; register_setup(setup: () => () => void): void; setup(): () => void; connectedCallback(): void; disconnectedCallback(): void; }; } & C;