import { Multimethod } from './internal/types'; /** * Retrieves the object with building blocks of the multimethod. * * You should not mutate any of its values. * * @param multimethod * @returns Inspection object */ declare const inspect: (multimethod: Multimethod) => { readonly dispatch: import("./internal/types").Dispatch; readonly entries: (import("./internal/types").MethodEntry | (((arg0: any, arg1?: any) => any) | { type: string; } | null)[])[]; readonly cases: any[]; readonly values: any[]; }; export default inspect;