import { Fn } from '../../types'; import { CurryRemainingParameters, CurryPlaceholderArr, CurryPartialArr } from './curry'; import { FN_PLACEHOLDER } from '../const/FN_PLACEHOLDER'; declare type PartialFn = { , R extends ReturnType, A extends any[] = CurryPlaceholderArr>>>(fn: F, ...args: A): Fn, R>; >>>(fn: any, ...args: A): Fn, R>; placeholder: FN_PLACEHOLDER; }; export declare const partial: PartialFn; export {};