import { FunctionType } from '../types';
/**
 * Extracts the default values of a function parameters.
 * It returns an array of the default values because after minification the parameter names are lost.
 * @param fn - Function to extract the default values from
 */
export declare function extractFunctionDefaults(fn: FunctionType<unknown>): unknown[];
