import type { ProjectCommandArguments } from '../../types/commands/common_arguments'; export interface EnvCommandArguments { /** @description Environment variable key */ secretKey: string; /** @description Environment variable value */ secretValue: string; } /** * `slack env set` * @returns command output */ export declare const set: (args: ProjectCommandArguments & EnvCommandArguments) => Promise; /** * `slack env list` * @returns command output */ export declare const list: (args: ProjectCommandArguments) => Promise; /** * `slack env unset` * @returns command output */ export declare const unset: (args: ProjectCommandArguments & Pick) => Promise; declare const _default: { set: (args: ProjectCommandArguments & EnvCommandArguments) => Promise; list: (args: ProjectCommandArguments) => Promise; unset: (args: ProjectCommandArguments & Pick) => Promise; }; export default _default; //# sourceMappingURL=env.d.ts.map