import { ComponentId } from './component';
export interface ConstantOption {
    id: ComponentId | ComponentId[];
    rebind?: boolean;
    constantValue?: any;
}
export declare const Constant: (id: ComponentId | ComponentId[], constantValue: any, rebind?: boolean) => ClassDecorator;
export declare function applyConstantDecorator(option: ConstantOption, target: any): void;
//# sourceMappingURL=constant.d.ts.map