export type EnvPullCallApi = (input: { path: string; type: 'query' | 'mutation'; data?: unknown; token?: string | null; }) => Promise; export type PullEnvFileResult = { sourceDir: string; wroteEnvFile: boolean; }; export declare function pullEnvFile(input: { callApi: EnvPullCallApi; token: string; workspaceId: string; funnelId: string; sourceDir: string; }): Promise;