import type { IDataObject } from 'n8n-workflow'; export type LoaderGetResponse = { data: Array<{ id: string; name: string; }>; } & IDataObject; export type Option = { value: string; name: string; }; //# sourceMappingURL=types.d.ts.map