export type JsonObject = Record; export type SharedSecret = { /** * Optional BetterTouchTool shared secret. */ sharedSecret?: string; }; export type TriggerVariables = Record; export declare function bttUrl(action: string, params: Record, sharedSecret?: string): string; export declare function jsonParam(json: JsonObject): string;