import { ExpoGraphqlClient } from '../../commandUtils/context/contextUtils/createGraphqlClient'; import { EnvironmentSecretFragment, EnvironmentSecretType } from '../generated'; export declare const EnvironmentSecretMutation: { createForAccountAsync(graphqlClient: ExpoGraphqlClient, input: { name: string; value: string; type: EnvironmentSecretType; }, accountId: string): Promise; createForAppAsync(graphqlClient: ExpoGraphqlClient, input: { name: string; value: string; type: EnvironmentSecretType; }, appId: string): Promise; deleteAsync(graphqlClient: ExpoGraphqlClient, id: string): Promise<{ id: string; }>; };