import * as $dara from '@darabonba/typescript'; export declare class CodeInterpreterSessionConfig extends $dara.Model { /** * @remarks * The environment variables for the session, specified as key-value pairs. * * @example * PYTHONPATH=/app,DEBUG=true */ environment?: { [key: string]: string; }; /** * @remarks * The timeout for the session, in seconds. * * @example * 3600 */ timeout?: number; /** * @remarks * The working directory path for the session. * * @example * /app */ workingDirectory?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }