type IErrorCode = 'INVALID_TEMPLATE_NAME' | 'INVALID_CONFIG_VALUE' | 'NOT_A_PATH_ELEMENT';
declare const ERRORS: {
    [key in IErrorCode]: IErrorCode;
};
export { ERRORS, };
