export declare const PRIORITY_PREFIX = ">";
export declare const QUEUE_PREFIX = "begcode:";
export declare const CUSTOM_PRIORITIES: ({
    priorityName: string;
    args: (generator: any) => any;
    edit: boolean;
    queueName?: undefined;
    before?: undefined;
} | {
    priorityName: string;
    queueName: string;
    before: string;
    args: (generator: any) => any;
    edit?: undefined;
} | {
    priorityName: string;
    queueName: string;
    before: string;
    args?: undefined;
    edit?: undefined;
})[];
export declare const PRIORITY_NAMES: {
    INITIALIZING: string;
    PROMPTING: string;
    CONFIGURING: string;
    COMPOSING: string;
    COMPOSING_COMPONENT: string;
    LOADING: string;
    PREPARING: string;
    POST_PREPARING: string;
    DEFAULT: string;
    WRITING: string;
    MULTISTEP_TRANSFORM: string;
    POST_WRITING: string;
    TRANSFORM: string;
    PRE_CONFLICTS: string;
    INSTALL: string;
    POST_INSTALL: string;
    END: string;
};
export declare const PRIORITY_NAMES_LIST: string[];
export declare const QUEUES: {
    INITIALIZING_QUEUE: string;
    PROMPTING_QUEUE: string;
    CONFIGURING_QUEUE: string;
    COMPOSING_QUEUE: string;
    COMPOSING_COMPONENT_QUEUE: string;
    LOADING_QUEUE: string;
    PREPARING_QUEUE: string;
    POST_PREPARING_QUEUE: string;
    DEFAULT_QUEUE: string;
    WRITING_QUEUE: string;
    MULTISTEP_TRANSFORM_QUEUE: string;
    POST_WRITING_QUEUE: string;
    TRANSFORM_QUEUE: string;
    PRE_CONFLICTS_QUEUE: string;
    INSTALL_QUEUE: string;
    POST_INSTALL_QUEUE: string;
    END_QUEUE: string;
};
