import type { EApiRouteType } from '../../../enum/decorator/api/index';
import type { TApiPropertyDescribeDtoProperties, TApiPropertyDescribeProperties } from '../../../type/decorator/api/property/index';
export interface IDtoStrategy {
    getDecoratorConfig(method: EApiRouteType, metadata: TApiPropertyDescribeProperties): TApiPropertyDescribeDtoProperties;
}
