import { IDtoAutoContextMetadata } from '../../type/auto-context-metadata.type';
/**
 * Retrieves stored DTO auto-context (route method + dto type) for a generated DTO prototype.
 * @param {object} target - DTO prototype that may contain context metadata.
 * @returns {IDtoAutoContextMetadata | undefined} Stored context metadata if available.
 */
export declare function GetAutoDtoContext(target: object): IDtoAutoContextMetadata | undefined;
