export declare function validateTransformFunction(fn: Function): boolean; export declare function loadTransform(transformPath: string): Function; export declare function createTransformHook(transform: string | Function): (row: any, index: number, context: any) => any; export declare function applyTransform(data: any[], transform: string | Function): any[]; export declare function createTransformHooksWithTransform(transform: string | Function): any; export declare function loadTransformAsync(transformPath: string): Promise; export declare function applyTransformAsync(data: any[], transform: string | Function): Promise; export declare function createAsyncTransformHook(transform: string | Function): (row: any, index: number, context: any) => Promise; export declare function validateTransformSafety(transformFn: Function): { safe: boolean; issues: string[]; }; declare const _default: { loadTransform: typeof loadTransform; loadTransformAsync: typeof loadTransformAsync; createTransformHook: typeof createTransformHook; createAsyncTransformHook: typeof createAsyncTransformHook; applyTransform: typeof applyTransform; applyTransformAsync: typeof applyTransformAsync; createTransformHooksWithTransform: typeof createTransformHooksWithTransform; validateTransformFunction: typeof validateTransformFunction; validateTransformSafety: typeof validateTransformSafety; }; export default _default;