import { AppletRepresentation } from '../domain';
/**
 * Class AppletRepresentationChainModifier
 */
export declare class AppletRepresentationChainModifier {
    representation: AppletRepresentation;
    constructor(representation: AppletRepresentation);
    /**
     * Modify applet's name
     * @param appletName
     * @return {AppletRepresentationChainModifier}
     */
    name(appletName: any): AppletRepresentationChainModifier;
    /**
     * Modify applet's category
     * @param processName
     * @return {AppletRepresentationChainModifier}
     */
    process(processName: any): AppletRepresentationChainModifier;
    /**
     * Modify applet's config
     * @param configResolver
     * @return {AppletRepresentationChainModifier}
     */
    config(configResolver: any): AppletRepresentationChainModifier;
}
