import { Fn } from '../../types'; import { CurryRightRemainingParameters, CurryRightPlaceholderArr, CurryRightPartialArr } from './curryRight'; import { FN_PLACEHOLDER } from '../const/FN_PLACEHOLDER'; declare type PartialRight = { , R = ReturnType, A extends any[] = CurryRightPlaceholderArr>>>(fn: F, ...args: A): Fn, R>; >>>(fn: any, ...args: A): Fn, R>; placeholder: FN_PLACEHOLDER; }; export declare const partialRight: PartialRight; export {};