import { type CustomMatchers } from '@quilted/react-testing/matchers'; declare module 'vitest' { interface Assertion extends CustomMatchers { } interface AsymmetricMatchersContaining extends CustomMatchers { } } interface ButtonProps { tooltip?: string; disabled?: boolean; onPress?(): void; onClick?(): void; } declare const RemoteButtonElement: import("@remote-dom/core/elements").RemoteElementConstructor; declare const RemoteModalElement: import("@remote-dom/core/elements").RemoteElementConstructor<{}, { open(): void; close(): void; }, { action?: true; }, {}>; declare const RemoteInputElement: import("@remote-dom/core/elements").RemoteElementConstructor<{}, {}, {}, { change(detail: string): void; }>; declare global { interface HTMLElementTagNameMap { 'remote-button': InstanceType; 'remote-modal': InstanceType; 'remote-input': InstanceType; } } export {}; //# sourceMappingURL=e2e.test.d.ts.map