import { Poke, Scry } from '../lib'; import { Pike } from './types'; export declare const getPikes: Scry; /** * Install a foreign desk */ export declare function kilnInstall(ship: string, desk: string, local?: string): Poke; /** * Sync with a foreign desk */ export declare function kilnSync(ship: string, desk: string, local?: string): Poke; /** * Unsync with a foreign desk */ export declare function kilnUnsync(ship: string, desk: string, local?: string): Poke; /** * Uninstall a desk */ export declare function kilnUninstall(desk: string): Poke; export declare function kilnSuspend(desk: string): Poke; export declare function kilnRevive(desk: string): Poke; export declare function kilnBump(): Poke; export declare function kilnPause(desk: string): { app: string; mark: string; json: string; }; export declare function kilnResume(desk: string): { app: string; mark: string; json: string; }; export declare const scryLag: Scry; export declare function getPikePublisher(pike: Pike): string;