import { Type } from "@tsed/core"; import type { JsonPropertyStore } from "../domain/JsonPropertyStore.js"; /** * Return the list of properties including properties from inherited classes * @param target * @ignore */ export declare function getPropertiesStores(target: Type | any): Map; /** * @ignore */ export interface GetPropertiesOptions { withIgnoredProps?: boolean; groups?: string[] | false; [type: string]: any; } /** * @ignore */ export declare function getProperties(target: Type | any, options?: GetPropertiesOptions): Map;