import { type ITyped } from "./type-utils"; export type ObjectKeyFunc = (cd: string, value: T, cnt?: number) => void; export declare const objectEachSimple: (object: ITyped, fn: ObjectKeyFunc) => void; export declare const objectAsString: (obj: any, splitter?: string, equalSign?: string, noProps?: boolean) => string; export declare const getKeyByValue: (object: ITyped, value: T) => string | undefined; export declare const isEmptyObject: (object: any) => boolean;