/**
 * Prepares acton response for logging.
 * Hides any sensitive data as defined by `api.config.general.filteredResponse`
 * Truncates long strings via `api.config.logger.maxLogStringLength`
 */
export declare function filterResponseForLogging(response: Record<string, any>): {
    [key: string]: any;
};
