/** * Placeholder method which substitutes the type name as a string at runtime. * @param property The property to get the name of. * @param replaceParent Optional object name to replace the top level object of a property path. * @returns The type name as a string. */ export declare function nameof(property?: unknown, replaceParent?: string): string; /** * Placeholder method which substitutes the type name as a string at runtime. * @param property The property to get the name of. * @param replaceParent Optional object name to replace the top level object of a property path. * @returns The type name as a string. */ export declare function nameofKebabCase(property?: unknown, replaceParent?: string): string; /** * Placeholder method which substitutes the type name as a string at runtime. * @param property The property to get the name of. * @param replaceParent Optional object name to replace the top level object of a property path. * @returns The type name as a string. */ export declare function nameofCamelCase(property?: unknown, replaceParent?: string): string;