import type * as neptunegraph from "@distilled.cloud/aws/neptune-graph"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for the `ListImportTasks` operation (IAM action `neptune-graph:ListImportTasks`). * * Lists the account's Neptune Analytics import tasks. Provide the implementation with * `Effect.provide(AWS.NeptuneGraph.ListImportTasksHttp)`. * ### Importing and Exporting Data * **Example:** List import tasks * ```typescript * const listImportTasks = yield* NeptuneGraph.ListImportTasks(); * * const { tasks } = yield* listImportTasks(); * ``` * * @binding */ export interface ListImportTasks extends Binding.Service Effect.Effect<(request?: neptunegraph.ListImportTasksInput) => Effect.Effect>> { } export declare const ListImportTasks: ListImportTasks; //# sourceMappingURL=ListImportTasks.d.ts.map