export declare type SCSystemToolModule = 'FILE'; export declare type SCSystemToolFunction = 'open' | 'select'; export interface SCSystemToolCall { module: SCSystemToolModule; function: SCSystemToolFunction; api?: string; token?: string; parameters?: { key: string; value: string; }[]; } export declare function createSCSystemToolsCall(call: SCSystemToolCall): string; export declare function openSCSystemToolsCall(call: SCSystemToolCall): void;