import { ALL } from './constants'; export declare const Param: { (property?: string | typeof ALL): ParameterDecorator; string(property?: string): ParameterDecorator; number(property?: string): ParameterDecorator; }; export declare const Query: { (property?: string | typeof ALL): ParameterDecorator; string(property?: string): ParameterDecorator; number(property?: string): ParameterDecorator; }; export declare const Body: { (property?: string | typeof ALL): ParameterDecorator; string(property?: string): ParameterDecorator; number(property?: string): ParameterDecorator; }; export declare const Header: (property?: string | typeof ALL) => ParameterDecorator; export declare const Files: (property?: string | typeof ALL) => ParameterDecorator;