import type { StartServerOptions } from "@powerhousedao/switchboard/server"; export type LocalSwitchboardOptions = StartServerOptions & { configFile?: string; generate?: boolean; watch?: boolean; basePath?: string; dbPath?: string; disableDefaultDrive?: boolean; remoteDrives?: string; remoteDrivesConfig?: string; }; export declare const defaultSwitchboardOptions: { port: number; dbPath: string; drive: { id: string; slug: string; global: { name: string; icon: string; }; local: { availableOffline: true; listeners: never[]; sharingType: string; triggers: never[]; }; }; mcp: true; }; type SwitchboardOptions = StartServerOptions & { remoteDrives?: string[]; useVetraDrive?: boolean; vetraDriveId?: string; }; export declare function startSwitchboard(options: SwitchboardOptions): Promise; export {}; //# sourceMappingURL=switchboard.d.ts.map