type ClientActionInput = Record; type ClientActionResult = Record; type ClientActionExecutionResult = { success: true; data: Record; } | { reason: string; success: false; }; export type ClientActionHandler = (input: ClientActionInput) => Promise; export declare const registerClientActionHandler: (key: string, handler: ClientActionHandler) => void; export declare const executeClientActionHandler: (key: string, input: ClientActionInput) => Promise; export {};