import type { transform, TransformOptions } from 'esbuild'; type Implementation = { transform: typeof transform; }; type Except = { [Key in keyof ObjectType as Key extends Properties ? never : Key]: ObjectType[Key]; }; export type LoaderOptions = Except & { implementation: Implementation; remotionRoot: string; }; export {};