import PocketBase from 'pocketbase-svelte'; export type Config = { pocketbaseUrl: string; superuserEmail: string; superuserPassword: string; }; export declare function debounce any>(func: T, wait: number): (...args: Parameters) => void; export declare function fileExists(path: string): Promise; export declare function randomPort(): number; export declare function waitForHealth(url: string, maxAttempts?: number): Promise; export declare function withPocketbase(cwd: string, fn: (pb: PocketBase) => Promise): Promise;