import { ComponentOption, ComponentId } from './component';
export interface AspectOption extends ComponentOption {
    id: ComponentId;
    pointcut?: string;
}
export declare type AdviceOrAspectOption = ComponentId | AspectOption;
export declare const Aspect: (adviceOrAspectOption: AdviceOrAspectOption) => ClassDecorator;
//# sourceMappingURL=aspect.d.ts.map