import Appendable from "../../display/core/Appendable"; import DefaultMethod from "./DefaultMethod"; import Defaults from "./Defaults"; import NullableCallback from "./NullableCallback"; export type FunctionPtr = [NullableCallback | DefaultMethod | undefined]; declare const getDefaultValue: (manager: Appendable | Defaults, key: string, fillNullableDefault?: boolean, fillFunctionArgs?: boolean, functionPtr?: FunctionPtr) => any; export default getDefaultValue; export declare const equalsValue: (manager: Appendable | Defaults, val0: any, val1: any, key: string) => boolean; export declare const equalsDefaultValue: (val: any, manager: Appendable | Defaults, key: string) => boolean;